# Maintainer: Your Name pkgname=recutils pkgver=1.3 pkgrel=7 pkgdesc="GNU Recutils is a set of tools and libraries to access human-editable, text-based databases" arch=(i686 x86_64) url="http://www.gnu.org/software/recutils/" license=('GPL3') #depends=() makedepends=(make) optdepends=(openssl curl) #provides=() #conflicts=() #replaces=() #backup=() #options=() install=recutils.install #changelog= source=("http://ftp.gnu.org/gnu/recutils/$pkgname-$pkgver.tar.gz" ) sha256sums=('f98aab13cb424304ff5421df9454fd11f5099d2986efda0cbeeb13bed3488e7b') options=(!libtool) build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr make } check() { cd "$srcdir/$pkgname-$pkgver" make check } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir/" install } # vim:set ts=2 sw=2 et: