Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 648 - (hide annotations)
Sun Oct 4 15:05:22 2009 UTC (3 years, 7 months ago) by cjg
File size: 504 byte(s)
agg: fixed
1 cjg 201 # Description: A High Quality Rendering Engine for C++
2     # URL: http://www.antigrain.com
3     # Maintainer: Giuseppe Coviello <cjg@cruxppc.org>
4     # Depends on: libsdl, freetype
5    
6     name=agg
7     version=2.5
8 cjg 648 release=2
9 cjg 201 source=(http://www.antigrain.com/$name-$version.tar.gz)
10    
11     build() {
12     cd $name-$version
13 cjg 648 sed -r -i -e 's:^(.*) -L@.*:\1:' src/platform/X11/Makefile.am
14     sh ./autogen.sh
15     ./configure --prefix=/usr --disable-static \
16     --enable-ctrl --disable-examples
17 cjg 201 make
18     make DESTDIR=$PKG install
19     }