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