# HG changeset patch # User Hans-G?nter Theisgen # Date 1555606329 -3600 # Node ID 83774c8a65dcf5cc3d797c8fbcc8f6a57aac8c2c # Parent ff97431224ca09363ce4fc18139fc16c8cc8d081 updated libtool (2.4.2 -> 2.4.6) diff -r ff97431224ca -r 83774c8a65dc libtool/receipt --- a/libtool/receipt Thu Apr 18 17:35:13 2019 +0100 +++ b/libtool/receipt Thu Apr 18 17:52:09 2019 +0100 @@ -1,19 +1,21 @@ # SliTaz package receipt. PACKAGE="libtool" -VERSION="2.4.2" +VERSION="2.4.6" CATEGORY="development" SHORT_DESC="The GNU Portable Library Tool." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.gnu.org/software/libtool/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.gnu.org/software/libtool/" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" -HOST_ARCH="i486 arm" DEPENDS="libltdl automake autoconf" BUILD_DEPENDS="automake autoconf" +HOST_ARCH="i486 arm" + # Handle cross compilation. case "$ARCH" in arm) BUILD_DEPENDS="" ;; @@ -22,21 +24,22 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --enable-shared \ + ./configure \ + --enable-shared \ $CONFIGURE_ARGS && - make && make install + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr \ - $fs/usr/share $fs/usr/lib + mkdir -p $fs/usr/share + mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/share/aclocal $fs/usr/share - cp -a $install/usr/share/libtool $fs/usr/share - cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/share/aclocal $fs/usr/share + cp -a $install/usr/share/libtool $fs/usr/share + cp -a $install/usr/bin $fs/usr }