diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:43:25 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:43:25 +0200 |
commit | 944b2d12c9043d84c5d3795d7a344c4baec5c20d (patch) | |
tree | 2563ee8bdc7398841ab648503fc80066b09ac489 /base/autoconf/Pkgfile | |
parent | 5b28acd1367ab806c116e5cc402f5290f8096b3a (diff) | |
download | nutyx-pakxe-944b2d12c9043d84c5d3795d7a344c4baec5c20d.tar.gz nutyx-pakxe-944b2d12c9043d84c5d3795d7a344c4baec5c20d.tar.bz2 nutyx-pakxe-944b2d12c9043d84c5d3795d7a344c4baec5c20d.tar.xz nutyx-pakxe-944b2d12c9043d84c5d3795d7a344c4baec5c20d.zip |
Ajout de autoconf#2.64-1
Diffstat (limited to 'base/autoconf/Pkgfile')
-rwxr-xr-x | base/autoconf/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/base/autoconf/Pkgfile b/base/autoconf/Pkgfile new file mode 100755 index 000000000..f279a0d2f --- /dev/null +++ b/base/autoconf/Pkgfile @@ -0,0 +1,21 @@ +# Description: Permet la production de scripts pouvant configurer automatiquement le code source +# URL: http://www.gnu.org/software/autoconf/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: + +name=autoconf +version=2.64 +release=1 +source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) + + +build() { +cd $name-$version +./configure --prefix=/usr +make +make DESTDIR=$PKG install +if [ -f $PKG/usr/share/info/dir ]; then + rm $PKG/usr/share/info/dir +fi +} |