blob: 48f763b9ac38f2ac5448ec803a920f6d35130f1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Bibliothèque TrueType pour libsdl.
# URL: http://www.libsdl.org/projects/SDL_ttf/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: freetype, sdl
# Run on: freetype,sdl
name=sdl_ttf
version=2.0.10
release=1
source=( http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$version.tar.gz)
build() {
cd SDL_ttf-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|