summaryrefslogtreecommitdiff
path: root/repo/libgpg-error
diff options
context:
space:
mode:
Diffstat (limited to 'repo/libgpg-error')
-rw-r--r--repo/libgpg-error/libgpg-error.xibuild28
1 files changed, 12 insertions, 16 deletions
diff --git a/repo/libgpg-error/libgpg-error.xibuild b/repo/libgpg-error/libgpg-error.xibuild
index 7498665..9850262 100644
--- a/repo/libgpg-error/libgpg-error.xibuild
+++ b/repo/libgpg-error/libgpg-error.xibuild
@@ -1,20 +1,15 @@
#!/bin/sh
-MAKEDEPS="make"
-DEPS="musl"
-
-PKG_VER=1.42
-SOURCE=https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-$PKG_VER.tar.bz2
+NAME="libgpg-error"
DESC="Support library for libgcrypt"
-prepare() {
- default_prepare
- aclocal
- automake
-}
+MAKEDEPS=" automake autoconf"
+
+PKG_VER=1.45
+SOURCE="https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-$PKG_VER.tar.bz2"
-build () {
- ./configure \
+build() {
+ ./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
@@ -22,11 +17,12 @@ build () {
--enable-static \
--disable-nls
make
-
}
-package () {
- make DESTDIR=$PKG_DEST install
+check() {
+ make -C "$BUILD_ROOT" check
}
-
+package() {
+ make DESTDIR="$PKG_DEST" install
+}