19 lines
415 B
Plaintext
19 lines
415 B
Plaintext
# Description: A compressed GIF library compatible with libungif
|
|
# URL: http://giflib.sourceforge.net
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot guru
|
|
# Depends on:
|
|
|
|
name=giflib
|
|
version=5.2.1
|
|
release=1
|
|
source=(http://download.sourceforge.net/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
make
|
|
make PREFIX=$PKG/usr install
|
|
|
|
#We only want the library and no manpages
|
|
rm -rf $PKG/usr/share
|
|
}
|