From 694f3f8f3a33d7fe29ac4c55ee4d3ced1b5a16fa Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 4 Jun 2022 15:10:51 +0100 Subject: added npth --- repo/npth/npth.xibuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 repo/npth/npth.xibuild (limited to 'repo/npth/npth.xibuild') 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 +} + -- cgit v1.2.1