# HG changeset patch # User Hans-G?nter Theisgen # Date 1582205607 -3600 # Node ID eb86a8841d2ad8082cbc2c611377a30501544803 # Parent 2622a9066658693c7a55142d5f4ea3685cde3960 updated gmp and gmp-dev (6.1.2 -> 6.2.0) diff -r 2622a9066658 -r eb86a8841d2a gmp-dev/receipt --- a/gmp-dev/receipt Thu Feb 20 14:14:07 2020 +0100 +++ b/gmp-dev/receipt Thu Feb 20 14:33:27 2020 +0100 @@ -1,20 +1,22 @@ # SliTaz package receipt PACKAGE="gmp-dev" -VERSION="6.1.2" +VERSION="6.2.0" CATEGORY="development" -SHORT_DESC="GNU Multiple Precision Arithmetic devel files." +SHORT_DESC="GNU Multiple Precision Arithmetic - development files." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" +WEB_SITE="https://gmplib.org/" + WANTED="gmp" -WEB_SITE="https://gmplib.org/" + HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { 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/lib/*.*a $fs/usr/lib + cp -a $install/usr/include $fs/usr } - diff -r 2622a9066658 -r eb86a8841d2a gmp/receipt --- a/gmp/receipt Thu Feb 20 14:14:07 2020 +0100 +++ b/gmp/receipt Thu Feb 20 14:33:27 2020 +0100 @@ -1,32 +1,34 @@ # SliTaz package receipt PACKAGE="gmp" -VERSION="6.1.2" +VERSION="6.2.0" CATEGORY="development" SHORT_DESC="GNU Multiple Precision Arithmetic Library." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" +WEB_SITE="https://gmplib.org/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="https://gmplib.org/" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" -HOST_ARCH="i486 arm" BUILD_DEPENDS="binutils m4" +HOST_ARCH="i486 arm" + # Rules to configure and make the package. compile_rules() { - ./configure \ - --enable-cxx \ + ./configure \ + --enable-cxx \ $CONFIGURE_ARGS && - # -j > 1 make install fails. - make && make -j 1 install + # make -j > 1 install fails. + make && + make -j 1 install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib } -