# Maintainer: Cedric Girard # Contributor: Tom pkgname=cacti-spine pkgver=0.8.8_d pkgrel=2 pkgdesc="Faster poller for Cacti." arch=('i686' 'x86_64') url="http://cacti.net/spine_info.php" license=('GPL') depends=('libmariadbclient' 'net-snmp' "cacti=${pkgver}") backup=('etc/spine.conf') source=("make.patch" "http://www.cacti.net/downloads/spine/${pkgname}-${pkgver/_/}.tar.gz") md5sums=('c36d7a35a9b9760fb6a8c53a007f06a7' '7724218aff3695369a20f05d2aeb993b') prepare() { cd "${srcdir}/${pkgname}-${pkgver/_/}" patch -p1 -i ../make.patch /usr/bin/aclocal /usr/bin/libtoolize --force --copy /usr/bin/autoheader /usr/bin/autoconf /usr/bin/automake --add-missing --copy --force-missing } build() { cd "${srcdir}/${pkgname}-${pkgver/_/}" export CFLAGS="$CFLAGS -lpthread -lm" ./configure --prefix=/usr --sysconfdir=/etc make } package() { cd "${srcdir}/${pkgname}-${pkgver/_/}" make DESTDIR="${pkgdir}" install mv "${pkgdir}"/etc/spine.conf.dist "${pkgdir}"/etc/spine.conf }