21 lines
522 B
Plaintext
21 lines
522 B
Plaintext
|
# Description: TrueType library for libsdl.
|
||
|
# URL: http://www.libsdl.org/projects/SDL_ttf/
|
||
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
||
|
# Packager: Simone Rota, sip at crux dot nu
|
||
|
# Depends on: freetype libsdl
|
||
|
|
||
|
name=sdl_ttf
|
||
|
version=2.0.8
|
||
|
release=1
|
||
|
source=(http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$version.tar.gz \
|
||
|
sdl_ttf-noftinternals.patch)
|
||
|
|
||
|
build() {
|
||
|
cd SDL_ttf-$version
|
||
|
patch -i $SRC/sdl_ttf-noftinternals.patch
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|
||
|
|