# HG changeset patch # User Hans-G?nter Theisgen # Date 1556701791 -3600 # Node ID 3f576c26c703652d3206aa134ed64eb414e27a61 # Parent 1ccc78d4d3b300af38685bc7eef54c3102e3b6a3 updated mpfr and mpfr-dev (3.1.5 -> 4.0.2) diff -r 1ccc78d4d3b3 -r 3f576c26c703 mpfr-dev/receipt --- a/mpfr-dev/receipt Wed May 01 09:38:09 2019 +0100 +++ b/mpfr-dev/receipt Wed May 01 10:09:51 2019 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt PACKAGE="mpfr-dev" -VERSION="3.1.5" +VERSION="4.0.2" CATEGORY="development" -SHORT_DESC="GNU Multiple Precision Arithmetic devel files." +SHORT_DESC="GNU Multiple Precision Arithmetic - development files." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" -WANTED="mpfr" WEB_SITE="https://www.mpfr.org/" -HOST_ARCH="i486 arm" DEPENDS="mpfr" +WANTED="mpfr" + +HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r 1ccc78d4d3b3 -r 3f576c26c703 mpfr/receipt --- a/mpfr/receipt Wed May 01 09:38:09 2019 +0100 +++ b/mpfr/receipt Wed May 01 10:09:51 2019 +0100 @@ -1,19 +1,21 @@ # SliTaz package receipt PACKAGE="mpfr" -VERSION="3.1.5" +VERSION="4.0.2" CATEGORY="development" SHORT_DESC="C library for multiple-precision floating-point computations." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" -TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="https://www.mpfr.org/" -WGET_URL="https://www.mpfr.org/mpfr-current/$TARBALL" -HOST_ARCH="i486 arm" + +TARBALL="$PACKAGE-$VERSION.tar.xz" +WGET_URL="${WEB_SITE}$PACKAGE-$VERSION/$TARBALL" DEPENDS="gmp" BUILD_DEPENDS="gmp-dev" +HOST_ARCH="i486 arm" + #--with-gmp-lib=/cross/$ARCH/sysroot/usr/lib #--with-gmp-include=/cross/$ARCH/sysroot/usr/include @@ -22,15 +24,18 @@ { case "$ARCH" in i?86) - ./configure \ - --enable-thread-safe \ + ./configure \ + --enable-thread-safe \ $CONFIGURE_ARGS && - make && make check && make install ;; + make && + make check && + make install ;; *) - ./configure \ - --enable-thread-safe \ + ./configure \ + --enable-thread-safe \ $CONFIGURE_ARGS && - make && make install ;; + make && + make install ;; esac }