wok diff libtool/receipt @ rev 13438
Up: claws-mail-notification (0.30)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Oct 07 01:20:11 2012 +0200 (2012-10-07) |
parents | ac4274a26d94 |
children | 6eff489aa802 |
line diff
1.1 --- a/libtool/receipt Fri May 20 03:09:27 2011 +0200 1.2 +++ b/libtool/receipt Sun Oct 07 01:20:11 2012 +0200 1.3 @@ -1,22 +1,25 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libtool" 1.7 -VERSION="2.4" 1.8 +VERSION="2.4.2" 1.9 CATEGORY="development" 1.10 SHORT_DESC="The GNU Portable Library Tool." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 -DEPENDS="libltdl automake autoconf" 1.13 -BUILD_DEPENDS="automake autoconf" 1.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 WEB_SITE="http://www.gnu.org/software/libtool/" 1.16 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.17 1.18 +DEPENDS="libltdl automake autoconf" 1.19 +BUILD_DEPENDS="automake autoconf" 1.20 + 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 { 1.24 cd $src 1.25 - ./configure --enable-shared $CONFIGURE_ARGS && 1.26 - make && make install 1.27 + ./configure \ 1.28 + --enable-shared \ 1.29 + $CONFIGURE_ARGS && 1.30 + make && make install 1.31 } 1.32 1.33 # Rules to gen a SliTaz package suitable for Tazpkg. 1.34 @@ -25,9 +28,9 @@ 1.35 mkdir -p $fs/usr \ 1.36 $fs/usr/share $fs/usr/lib 1.37 1.38 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.39 - cp -a $_pkg/usr/include $fs/usr 1.40 - cp -a $_pkg/usr/share/aclocal $fs/usr/share 1.41 - cp -a $_pkg/usr/share/libtool $fs/usr/share 1.42 - cp -a $_pkg/usr/bin $fs/usr 1.43 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.44 + cp -a $install/usr/include $fs/usr 1.45 + cp -a $install/usr/share/aclocal $fs/usr/share 1.46 + cp -a $install/usr/share/libtool $fs/usr/share 1.47 + cp -a $install/usr/bin $fs/usr 1.48 }