forked from ports/contrib
21 lines
519 B
Plaintext
21 lines
519 B
Plaintext
# Description: Library for doubly linked lists and a wrapper for imlib2.
|
|
# URL: http://freshmeat.net/projects/giblib/
|
|
# Maintainer: unmaintained
|
|
# Depends on: imlib2
|
|
|
|
name=giblib
|
|
version=1.2.4
|
|
release=2
|
|
source=(https://downloads.sourceforge.net/project/slackbuildsdirectlinks/giblib/giblib-$version.tar.gz
|
|
fix-configure_ac-imlib2.patch)
|
|
|
|
build() {
|
|
cd giblib-$version
|
|
patch -Np1 -i $SRC/fix-configure_ac-imlib2.patch
|
|
autoreconf -fvi
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/doc
|
|
}
|