updated on Fri Jan 20 12:03:34 UTC 2012
[aur-mirror.git] / recutils / PKGBUILD
blob816dc15ea56c3438961297145488215b1e1a8b3a
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>
7 pkgname=recutils
8 pkgver=1.4
9 pkgrel=2
10 pkgdesc="GNU tools and libraries to access human-editable, text-based databases."
11 arch=(i686 x86_64)
12 url="http://www.gnu.org/software/recutils/"
13 license=('GPL')
14 depends=(libgcrypt curl)
15 makedepends=(make) 
16 optdepends=(openssl mdbtools)
17 #provides=()
18 #conflicts=()
19 #replaces=()
20 #backup=()
21 #options=()
22 install=recutils.install
23 #changelog=
24 source=("http://ftp.gnu.org/gnu/recutils/$pkgname-$pkgver.tar.gz"
25        )
26 sha256sums=('fba69f0e4d57312519b7cff533c7cc229137a5e4f3e6eff0aef8cd36ebaf53cd')
27 options=(!libtool)
29 build() {
30   cd "$srcdir/$pkgname-$pkgver"
32   ./configure --prefix=/usr
33   make
36 package() {
37   cd "$srcdir/$pkgname-$pkgver" 
38   make DESTDIR="$pkgdir/" install
41 # vim:set ts=2 sw=2 et: