diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 04:44:14 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 04:44:14 +0100 |
commit | 9c6b0be2773162a4d9a344371656cdfb510e1875 (patch) | |
tree | c4e9903b8988ebca239a4bab9e2055571e21b020 /libtool/Pkgfile | |
parent | c3ebeca6a8336defc66022534ba9bcbb800537d5 (diff) | |
download | devel-9c6b0be2773162a4d9a344371656cdfb510e1875.tar.gz devel-9c6b0be2773162a4d9a344371656cdfb510e1875.tar.bz2 devel-9c6b0be2773162a4d9a344371656cdfb510e1875.tar.xz devel-9c6b0be2773162a4d9a344371656cdfb510e1875.zip |
Recette de libtool ajoutée.
Diffstat (limited to 'libtool/Pkgfile')
-rw-r--r-- | libtool/Pkgfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libtool/Pkgfile b/libtool/Pkgfile new file mode 100644 index 0000000..79f69ed --- /dev/null +++ b/libtool/Pkgfile @@ -0,0 +1,18 @@ +description="A generic library support script" +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" +url="http://www.gnu.org/software/libtool/" +depends=() + +name=libtool +version=2.4 +release=1 +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) +build () +{ + cd $name-$version; + ./configure --prefix=$prefix --mandir=$mandir; + make; + make DESTDIR=$PKG install; + rm $PKG/usr/share/libtool/libltdl/README +} |