Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 127 - (hide annotations)
Sun Oct 4 14:32:34 2009 UTC (3 years, 7 months ago) by cjg
File size: 430 byte(s)
freetype: updated to 2.3.8
1 cjg 2 # 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 cjg 127 version=2.3.8
8 cjg 2 release=1
9     source=(http://dl.sourceforge.net/freetype/freetype-$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     }