wok view libtool/receipt @ rev 15034

sarg: no more /var ?
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 12 12:23:39 2013 +0000 (2013-08-12)
parents bf6520485b0b
children ab15b09c1a91
line source
1 # SliTaz package receipt.
3 PACKAGE="libtool"
4 VERSION="2.4.2"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Portable Library Tool."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/libtool/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="libltdl automake autoconf"
14 BUILD_DEPENDS="automake autoconf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --enable-shared \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr \
30 $fs/usr/share $fs/usr/lib
32 cp -a $install/usr/lib/*.*a $fs/usr/lib
33 cp -a $install/usr/include $fs/usr
34 cp -a $install/usr/share/aclocal $fs/usr/share
35 cp -a $install/usr/share/libtool $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 }