summaryrefslogtreecommitdiffstats
path: root/pth/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'pth/Pkgfile')
-rwxr-xr-xpth/Pkgfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/pth/Pkgfile b/pth/Pkgfile
new file mode 100755
index 000000000..d59df666e
--- /dev/null
+++ b/pth/Pkgfile
@@ -0,0 +1,24 @@
+# Description: contains a very portable POSIX/ANSI-C based library for Unix platforms
+# URL: http://ftp.gnu.org/gun/pth
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+# Run on:
+
+name=pth
+version=2.0.7
+release=3
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
+
+build() {
+ # build package
+ cd $name-$version
+ ./configure --prefix=/usr\
+ --mandir=/usr/share/man\
+ --infodir=/usr/share/info
+
+ unset MAKEFLAGS
+ make
+ make DESTDIR=$PKG install
+}
+