blob: 6598d2cdf9930ab6bea739fc2c531afa9c1fe0a3 (
plain)
1 # Description: A compressed GIF library compatible with libungif
2 # URL: http://giflib.sourceforge.net
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot guru
4 # Depends on:
5
6 name=giflib
7 version=5.2.1
8 release=1
9 source=(http://download.sourceforge.net/$name/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 make
14 make PREFIX=$PKG/usr install
15
16 #We only want the library and no manpages
17 rm -rf $PKG/usr/share
18 }
|