wok annotate libtool/receipt @ rev 8684

Fix dep: gnome-menus depends on libgio
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Feb 17 18:56:09 2011 +0100 (2011-02-17)
parents 73cc1c0a2e6e
children ac1a2a3338dd
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
gokhlayeh@8195 18 ./configure && make && make install
pankso@30 19 }
pankso@30 20
pankso@30 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@30 22 genpkg_rules()
pankso@30 23 {
pankso@30 24 mkdir -p $fs/usr/share
pankso@30 25 cp -a $_pkg/usr/bin $fs/usr
pankso@30 26 cp -a $_pkg/usr/lib $fs/usr
pankso@30 27 cp -a $_pkg/usr/include $fs/usr
pankso@30 28 cp -a $_pkg/usr/share/aclocal $fs/usr/share
pankso@30 29 cp -a $_pkg/usr/share/libtool $fs/usr/share
pankso@30 30 }