blob: d0ec5311c1db2894a67b2c7a38f7f6e119a61e74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Bibliothèque TrueType pour libsdl.
# URL: http://www.libsdl.org/projects/SDL_ttf/
# Maintainer: Danny Rawlins <monster dot romster at gmail dot com>
# 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
# Application de patchs
patch -i $SRC/sdl_ttf-noftinternals.patch
# compilation
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|