Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1975 - (hide annotations)
Tue Sep 28 15:52:01 2010 UTC (2 years, 7 months ago) by acrux
File size: 687 byte(s)
replaced all broken dl.sourceforge.net links to download.sourceforge.net
1 cjg 720 # Description: Powerful image loading and rendering library
2 acrux 1827 # URL: http://www.enlightenment.org/
3     # Maintainer: acrux, acrux at linuxmail dot com
4     # Depends on: libpng, libjpeg, freetype, libungif, libtiff, xorg-libsm, xorg-libxext
5 cjg 720 # PPC!=
6    
7     name=imlib2
8 acrux 1827 version=1.4.4
9     release=1
10 acrux 1975 source=(http://download.sourceforge.net/enlightenment/$name\_loaders-$version.tar.bz2 \
11     http://download.sourceforge.net/enlightenment/$name-$version.tar.bz2)
12 acrux 1827
13     build() {
14 acrux 1535
15 acrux 1827 (cd $name\_loaders-$version
16     ./configure --prefix=/usr --with-gnu-ld
17     make
18     make DESTDIR=$PKG install)
19    
20     cd $name-$version
21    
22     ./configure --prefix=/usr \
23     --with-gnu-ld --without-id3
24    
25     make
26     make DESTDIR=$PKG install
27 cjg 720 }