1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Max Meyer <dev@fedux.org>
10 pkgdesc="GNU tools and libraries to access human-editable, text-based databases."
12 url="http://www.gnu.org/software/recutils/"
14 depends=(libgcrypt curl)
16 optdepends=(openssl mdbtools)
22 install=recutils.install
24 source=("http://ftp.gnu.org/gnu/recutils/$pkgname-$pkgver.tar.gz"
26 sha256sums=('fba69f0e4d57312519b7cff533c7cc229137a5e4f3e6eff0aef8cd36ebaf53cd')
30 cd "$srcdir/$pkgname-$pkgver"
32 ./configure --prefix=/usr
37 cd "$srcdir/$pkgname-$pkgver"
38 make DESTDIR="$pkgdir/" install
41 # vim:set ts=2 sw=2 et: