summaryrefslogtreecommitdiff
path: root/repo/npth/npth.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/npth/npth.xibuild')
-rw-r--r--repo/npth/npth.xibuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/repo/npth/npth.xibuild b/repo/npth/npth.xibuild
new file mode 100644
index 0000000..2d3d5d4
--- /dev/null
+++ b/repo/npth/npth.xibuild
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+NAME="npth"
+DESC="The New GNU Portable Threads library"
+
+MAKEDEPS=""
+
+PKG_VER=1.6
+SOURCE="https://gnupg.org/ftp/gcrypt/npth/npth-$PKG_VER.tar.bz2"
+
+build() {
+ cd "$BUILD_ROOT"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --localstatedir=/var
+ make
+}
+
+check() {
+ cd "$BUILD_ROOT"
+ make check
+}
+
+package() {
+ cd "$BUILD_ROOT"
+ make DESTDIR="$PKG_DEST" install
+}
+