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