Skip to content

Instantly share code, notes, and snippets.

@maxpoulin64
Created December 2, 2013 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxpoulin64/1c60d3cddd38c514f101 to your computer and use it in GitHub Desktop.
Save maxpoulin64/1c60d3cddd38c514f101 to your computer and use it in GitHub Desktop.
Fixed PKGBUILD as of 2013-12-02 for AUR package "dbf" https://aur.archlinux.org/packages/dbf/
pkgname=dbf
pkgver=0.9.0_alpha01
pkgrel=3
pkgdesc="Command line tool to show and convert the content of dBASE III, IV, and 5.0 files"
url="http://dbf.berlios.de"
arch=('i686' 'x86_64')
license=('GPL')
depends=('libdbf')
makedepends=('unzip')
source=("http://download.berlios.de/dbf/$pkgname-core-0.9.0.src.zip")
md5sums=('fb5c016d9e45a95c1956d959792a5063')
build() {
cd "${srcdir}/$pkgname-core"
chmod +x autogen.sh
rm configure install-sh depcomp missing
./autogen.sh && ./configure --prefix=/usr
make || return 1
}
package() {
cd "${srcdir}/$pkgname-core"
make DESTDIR="${pkgdir}" install
find "${pkgdir}" -name '*.la' -exec rm {} \;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment