2016-02-24 01:27:23 +01:00
|
|
|
# Description: A garbage collector for C and C++
|
|
|
|
# URL: http://downloads.sourceforge.net/giflib/
|
2017-01-31 01:37:09 +01:00
|
|
|
# Packager: milisarge
|
|
|
|
# Depends on: xmlto
|
|
|
|
|
2016-02-24 01:27:23 +01:00
|
|
|
name=giflib
|
|
|
|
version=5.1.2
|
|
|
|
release=1
|
|
|
|
source=(http://downloads.sourceforge.net/giflib/giflib-$version.tar.bz2 )
|
2017-01-31 01:37:09 +01:00
|
|
|
|
2016-02-24 01:27:23 +01:00
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-static
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
install -v -dm755 $PKG/usr/share/doc/giflib-$version/html
|
|
|
|
install -v -m644 doc/*.html \
|
|
|
|
$PKG/usr/share/doc/giflib-$version/html
|
|
|
|
}
|