CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
freetype: initial import (verified compilation)
[attic/ports/opt-cross.git] / freetype / Pkgfile
CommitLineData
35dec744
JB
1# Description: A free and portable TrueType font rendering engine
2# URL: http://www.freetype.org
3# Maintainer: Tilman Sauerbeck tilman at crux dot nu
4# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org
5# Depends on: zlib
6
7name=freetype
8version=2.3.11
9release=1
10source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.bz2)
11
12build() {
13 cd freetype-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --with-zlib \
19 --disable-nls
20
21 make
22 make DESTDIR=$PKG install
23}