wok annotate libtool/receipt @ rev 7937

slitaz-mercurial-style: Start moving to new CSS and layout
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jan 11 21:53:28 2011 +0100 (2011-01-11)
parents f73b9b2a0181
children 38286698e49d
rev   line source
pankso@30 1 # SliTaz package receipt.
pankso@30 2
pankso@30 3 PACKAGE="libtool"
slaxemulator@6544 4 VERSION="2.4"
pankso@211 5 CATEGORY="development"
pankso@30 6 SHORT_DESC="The GNU Portable Library Tool."
pankso@30 7 MAINTAINER="pankso@slitaz.org"
gokhlayeh@7900 8 DEPENDS="automake autoconf"
gokhlayeh@7900 9 BUILD_DEPENDS="automake autoconf"
pankso@30 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@30 11 WEB_SITE="http://www.gnu.org/software/libtool/"
pankso@30 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@30 13
pankso@30 14 # Rules to configure and make the package.
pankso@30 15 compile_rules()
pankso@30 16 {
pankso@30 17 cd $src
pankso@530 18 ./configure \
pankso@530 19 --prefix=/usr \
pankso@530 20 --infodir=/usr/share/info \
pankso@530 21 --mandir=/usr/share/man \
pankso@530 22 $CONFIGURE_ARGS
pankso@30 23 make
pankso@30 24 make DESTDIR=$PWD/_pkg install
pankso@30 25 }
pankso@30 26
pankso@30 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@30 28 genpkg_rules()
pankso@30 29 {
pankso@30 30 mkdir -p $fs/usr/share
pankso@30 31 cp -a $_pkg/usr/bin $fs/usr
pankso@30 32 cp -a $_pkg/usr/lib $fs/usr
pankso@30 33 cp -a $_pkg/usr/include $fs/usr
pankso@30 34 cp -a $_pkg/usr/share/aclocal $fs/usr/share
pankso@30 35 cp -a $_pkg/usr/share/libtool $fs/usr/share
pankso@30 36 }