# vim: set syn=sh: # Packager: Phill Watkins pkgname=rlog pkgver=1.4 pkgrel=1pw #arch=noarch source=("http://rlog.googlecode.com/files/rlog-$pkgver.tar.gz") sourcetemplate=http://people.salixos.org/pwatk/packages/13.2/l/$pkgname docs=("AUTHORS" "ChangeLog" "COPYING" "INSTALL" "README") url=http://www.arg0.net/rlog slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "rlog (C++ logging library)" "RLog is a flexible message logging facility for C++ programs and" "libraries. It is highly optimized for the case where no log messages" "are output, so that it can be left in production code and enabled" "on-demand." ) 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 \ --docdir=/usr/doc/$pkgname-$pkgver \ --build=$arch-slackware-linux \ --disable-static make -j $numjobs make install \ DESTDIR=$startdir/pkg \ pkgdocdir=/usr/doc/$pkgname-$pkgver set +e }