# HG changeset patch # User Hans-G?nter Theisgen # Date 1552483263 -3600 # Node ID bf9d3416304cd2bc6a6098971b424651a5c9f8c3 # Parent 10c3a6f71c06ac045dd03c82615025c441eed443 updated intltool (0.50.2 -> 0.51.1) diff -r 10c3a6f71c06 -r bf9d3416304c intltool/receipt --- a/intltool/receipt Wed Mar 13 14:10:27 2019 +0100 +++ b/intltool/receipt Wed Mar 13 14:21:03 2019 +0100 @@ -1,27 +1,27 @@ # SliTaz package receipt. PACKAGE="intltool" -VERSION="0.50.2" +VERSION="0.51.0" CATEGORY="development" SHORT_DESC="Translation tools (PO, XML)." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://launchpad.net/intltool/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://edge.launchpad.net/intltool" -WGET_URL="https://edge.launchpad.net/intltool/trunk/$VERSION/+download/$TARBALL" -HOST_ARCH="i486 arm" +WGET_URL="https://launchpad.net/$PACKAGE/trunk/$VERSION/+download/$TARBALL" DEPENDS="perl perl-xml-parser gettext" -BUILD_DEPENDS="perl perl-xml-parser wget" +BUILD_DEPENDS="perl perl-xml-parser" +HOST_ARCH="i486 arm" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure \ - --prefix=/usr \ + ./configure \ + --prefix=/usr \ $CONFIGURE_ARGS && - make && + make -j 1 && make DESTDIR=$DESTDIR install } @@ -29,8 +29,10 @@ genpkg_rules() { mkdir -p $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/aclocal $fs/usr/share - cp -a $install/usr/share/intltool $fs/usr/share + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/aclocal $fs/usr/share + cp -a $install/usr/share/intltool $fs/usr/share + chmod +x $fs/usr/bin/* }