wok annotate libtool/receipt @ rev 9847

Up: libgphoto2 to 2.4.11.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 15 21:17:14 2011 +0000 (2011-05-15)
parents 38286698e49d
children ac4274a26d94
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"
erjo@8695 8 DEPENDS="libltdl 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
erjo@8695 18 ./configure --prefix=/usr \
erjo@8695 19 --enable-shared && make && make DESTDIR=$PWD/_pkg install
pankso@30 20 }
pankso@30 21
pankso@30 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@30 23 genpkg_rules()
pankso@30 24 {
erjo@8695 25 mkdir -p $fs/usr \
erjo@8695 26 $fs/usr/share $fs/usr/lib
erjo@8695 27
erjo@8695 28 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
pankso@30 29 cp -a $_pkg/usr/include $fs/usr
pankso@30 30 cp -a $_pkg/usr/share/aclocal $fs/usr/share
pankso@30 31 cp -a $_pkg/usr/share/libtool $fs/usr/share
erjo@8695 32 cp -a $_pkg/usr/bin $fs/usr
pankso@30 33 }