blob: 12cdba80b21549bcb98b90e2a510cf2f160473a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
NAME="sdl2-ttf"
DESC="A library which allows you to use TrueType fonts in your SDL applications"
MAKEDEPS="freetype2 mesa sdl2"
PKG_VER=2.0.18
SOURCE="https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-$PKG_VER.tar.gz"
build() {
./configure \
--prefix=/usr \
--enable-static
make
}
package() {
make DESTDIR="$PKG_DEST" install
}
|