blob: 2e4b770d2afd388d0425060ad0cd23da29fedaa1 (
plain)
1 # Description: TrueType library for libsdl.
2 # URL: http://www.libsdl.org/projects/SDL_ttf/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Simone Rota, sip at crux dot nu
5 # Depends on: freetype libsdl
6
7 name=sdl_ttf
8 version=2.0.11
9 release=1
10 source=(http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$version.tar.gz)
11
12 build() {
13 cd SDL_ttf-$version
14
15 ./configure \
16 --prefix=/usr \
17 --disable-dependency-tracking
18
19 make
20 make DESTDIR=$PKG install
21 }
|