# HG changeset patch # User Hans-G?nter Theisgen # Date 1649658215 -3600 # Node ID 9dbcbcae7c1261725eac751013d0eaf1de60f882 # Parent 599ac1affa582d5f7eea43ee9e50a83008a695a2 updated mpfr and mpfr-dev (4.0.2 -> 4.1.0) diff -r 599ac1affa58 -r 9dbcbcae7c12 mpfr-dev/receipt --- a/mpfr-dev/receipt Sun Apr 10 17:48:38 2022 +0000 +++ b/mpfr-dev/receipt Mon Apr 11 07:23:35 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt PACKAGE="mpfr-dev" -VERSION="4.0.2" +VERSION="4.1.0" CATEGORY="development" SHORT_DESC="GNU Multiple Precision Arithmetic - development files." MAINTAINER="pankso@slitaz.org" @@ -16,5 +16,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cook_copy_files *.*a *.h + cook_copy_files *.*a + cook_copy_files *.h } diff -r 599ac1affa58 -r 9dbcbcae7c12 mpfr/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mpfr/description.txt Mon Apr 11 07:23:35 2022 +0100 @@ -0,0 +1,12 @@ +The MPFR library is a C library for multiple-precision floating-point +computations with correct rounding. +MPFR has continuously been supported by the INRIA and the current main +authors come from the Caramba and AriC project-teams at Loria +(Nancy, France) and LIP (Lyon, France) respectively. +MPFR is based on the GMP multiple-precision library. + +The main goal of MPFR is to provide a library for multiple-precision +floating-point computation which is both efficient and has a +well-defined semantics. +It copies the good ideas from the ANSI/IEEE-754 standard for +double-precision floating-point arithmetic (53-bit significand). diff -r 599ac1affa58 -r 9dbcbcae7c12 mpfr/receipt --- a/mpfr/receipt Sun Apr 10 17:48:38 2022 +0000 +++ b/mpfr/receipt Mon Apr 11 07:23:35 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt PACKAGE="mpfr" -VERSION="4.0.2" +VERSION="4.1.0" CATEGORY="development" SHORT_DESC="C library for multiple-precision floating-point computations." MAINTAINER="pankso@slitaz.org" @@ -30,24 +30,26 @@ compile_rules() { case "$ARCH" in - i?86) + (i?86) ./configure \ --enable-thread-safe \ $CONFIGURE_ARGS && make && make check && - make install ;; - *) + make install + ;; + (*) ./configure \ --enable-thread-safe \ $CONFIGURE_ARGS && make && - make install ;; + make install + ;; esac } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cook_copy_files *.so* + cook_copy_files *.so* }