# vim: set syn=sh: # Packager: Phill Watkins # Former Packager(s): George Vlahavas (vlahavas~at~gmail~dot~com) pkgname=giblib pkgver=1.2.4 pkgrel=1pw #arch=noarch source=("giblib-$pkgver.tar.gz") sourcetemplate=http://people.salixos.org/pwatk/packages/extra/$pkgname docs=("COPYING" "NEWS") #url= options=('nosrcpack') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "giblib (a simple library which wraps imlib2)" "giblib provides a wrapper to imlib2's context API, avoiding all the" "context_get/set calls, adds fontstyles to the truetype renderer and" "supplies a generic doubly-linked list and some string functions." ) build() { set -e cd $startdir/src/$pkgname-$pkgver ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --infodir=/usr/info \ --build=$arch-slackware-linux \ --disable-static make -j $numjobs make install \ DESTDIR=$startdir/pkg \ docsdir=/usr/doc/$pkgname-$pkgver set +e }