updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / libdbf / PKGBUILD
blobcb1dacef86a38382cba9e9c16ccbb82b565a38df
1 # Contributor: Jonathas Rodrigues <jonathas@archlinux.com.br>
3 pkgname=libdbf
4 pkgver=0.0.1
5 pkgrel=1
6 pkgdesc="Library for accessing the content of dBASE III, IV, and 5.0 files"
7 url="http://dbf.berlios.de"
8 arch=('i686')
9 license=('GPL')
10 depends=('intltool')
11 makedepends=('unzip')
12 conflicts=()
13 replaces=()
14 backup=()
15 install=
16 source=(http://download.berlios.de/dbf/$pkgname-$pkgver.src.zip)
17 md5sums=('201d788000682dc73b27c3bc08326979')
19 build() {
20   cd $startdir/src/$pkgname
21   chmod +x autogen.sh
22   rm configure install-sh depcomp missing
23   ./autogen.sh && ./configure --prefix=/usr
24   make || return 1
25   make DESTDIR=$startdir/pkg install
26   find $startdir/pkg -name '*.la' -exec rm {} \;