diff options
Diffstat (limited to 'base/pth/Pkgfile')
-rwxr-xr-x | base/pth/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/base/pth/Pkgfile b/base/pth/Pkgfile new file mode 100755 index 000000000..d59df666e --- /dev/null +++ b/base/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 +} + |