summaryrefslogtreecommitdiffstats
path: root/base/libtool/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'base/libtool/Pkgfile')
-rwxr-xr-xbase/libtool/Pkgfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/base/libtool/Pkgfile b/base/libtool/Pkgfile
new file mode 100755
index 000000000..75cb52564
--- /dev/null
+++ b/base/libtool/Pkgfile
@@ -0,0 +1,22 @@
+# Description: Librairie pour le support de scripts génériques
+# URL: http://www.gnu.org/software/libtool/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=libtool
+version=2.2.6a
+release=1
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz )
+
+build() {
+cd $name-*
+./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info
+make
+make DESTDIR=$PKG install
+if [ -f $PKG/usr/share/info/dir ]; then
+ rm $PKG/usr/share/info/dir
+fi
+}