-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SDL2 alone is now kind of a core package, sdl2_ttf is kind of an extension that is used often by projects that use SDL2.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/env beesh | ||
|
||
#BEE_VERSION sdl2_ttf-2.22.0-0 | ||
|
||
#SRCURL[0]="https://github.com/libsdl-org/SDL_ttf/releases/download/release-${PKGVERSION}/SDL2_ttf-${PKGVERSION}.tar.gz" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/686e685caaa215d8fa1ac7bb02b2cf54/SDL2_ttf-2.22.0.tar.gz" | ||
|
||
BEE_BUILDTYPE=autotools | ||
|
||
# PATCHURL+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
mee_configure() { | ||
bee_configure --enable-harfbuzz-builtin=no --enable-freetype-builtin=no | ||
} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} |