Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 574 - (show annotations)
Sun Oct 4 15:04:34 2009 UTC (3 years, 7 months ago) by cjg
File size: 440 byte(s)
freetype: autoupdated to 2.3.9-1
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 # Depends on: zlib
5
6 name=freetype
7 version=2.3.9
8 release=1
9 source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.bz2)
10
11 build() {
12 cd freetype-$version
13 ./configure --prefix=/usr \
14 --with-zlib \
15 --disable-nls
16 make
17 make DESTDIR=$PKG install
18 }