diff options
author | tnut <tnut at nutyx dot com> | 2011-10-15 17:01:36 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-10-15 17:01:36 +0200 |
commit | 92bab22c9bc0ac3e983e60f04edf8ee62cd534aa (patch) | |
tree | 92af9051608144761b53f9d2aee8386ad80f8f5d /extra/pth/Pkgfile | |
parent | 7933f82bedf5626c14898ff06099ab425e8ba3ff (diff) | |
download | nutyx-extra-92bab22c9bc0ac3e983e60f04edf8ee62cd534aa.tar.gz nutyx-extra-92bab22c9bc0ac3e983e60f04edf8ee62cd534aa.tar.bz2 nutyx-extra-92bab22c9bc0ac3e983e60f04edf8ee62cd534aa.tar.xz nutyx-extra-92bab22c9bc0ac3e983e60f04edf8ee62cd534aa.zip |
pth dans extra
Diffstat (limited to 'extra/pth/Pkgfile')
-rwxr-xr-x | extra/pth/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/pth/Pkgfile b/extra/pth/Pkgfile new file mode 100755 index 000000000..d59df666e --- /dev/null +++ b/extra/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 +} + |