summaryrefslogtreecommitdiff
path: root/gnu/recutils/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/recutils/PKGBUILD')
-rw-r--r--gnu/recutils/PKGBUILD42
1 files changed, 0 insertions, 42 deletions
diff --git a/gnu/recutils/PKGBUILD b/gnu/recutils/PKGBUILD
deleted file mode 100644
index 519c0fa6f..000000000
--- a/gnu/recutils/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# Maintainer: Max Meyer <dev@fedux.org>
-# Contributor: Sven Wick <sven.wick@gmx.de>
-#
-# Please fork and send me a pull request for changes to package build file(s)
-# Url: https://github.com/maxmeyer/archlinux-recutils
-#
-
-pkgname=recutils
-pkgver=1.5
-pkgrel=1
-pkgdesc="GNU tools and libraries to access human-editable, text-based databases."
-arch=(i686 x86_64 mips64el)
-url="http://www.gnu.org/software/recutils/"
-license=('GPL3')
-depends=(libgcrypt curl)
-optdepends=("mdbtools: for processing M$ Access databases")
-#options=()
-install=recutils.install
-changelog=ChangeLog
-source=("http://ftp.gnu.org/gnu/recutils/$pkgname-$pkgver.tar.gz")
-sha256sums=('7ed67e74468084f52ad9341e4b11c44e5fd9d5325b93b7eb2cb230c839ff5dec')
-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: