summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 388317a8e80a..972f91171816 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,12 @@
pkgbase = recutils
pkgdesc = Set of tools and libraries to access plain text databases called recfiles.
pkgver = 1.8
- pkgrel = 1
+ pkgrel = 2
url = https://www.gnu.org/software/recutils/
arch = i686
arch = x86_64
license = GPL
+ checkdepends = check
depends = libgcrypt
source = https://ftp.gnu.org/gnu/recutils/recutils-1.8.tar.gz
md5sums = 0ec4f9046cc01092758be9c4988c6fb3
diff --git a/PKGBUILD b/PKGBUILD
index 1b54899b8025..b3cc04505317 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,19 @@
# Maintainer: Stefan Haller <fgrsnau@gmail.com>
pkgname=recutils
pkgver=1.8
-pkgrel=1
+pkgrel=2
pkgdesc="Set of tools and libraries to access plain text databases called recfiles."
arch=(i686 x86_64)
url="https://www.gnu.org/software/recutils/"
license=('GPL')
depends=('libgcrypt')
+checkdepends=('check')
source=("https://ftp.gnu.org/gnu/recutils/$pkgname-$pkgver.tar.gz")
md5sums=('0ec4f9046cc01092758be9c4988c6fb3')
build() {
cd "$pkgname-$pkgver"
- ./configure --prefix=/usr --with-bash-headers
+ ./configure --prefix=/usr
make
}