# HG changeset patch # User Hans-G?nter Theisgen # Date 1556696662 -3600 # Node ID 81415da323295bebcdcc8cd4b555fd4627610ecd # Parent e0b83c7df430f6c275eb140de6335df1c5747f83 updated mpc-library (1.0.3 -> 1.1.0) diff -r e0b83c7df430 -r 81415da32329 mpc-library/receipt --- a/mpc-library/receipt Wed May 01 03:35:22 2019 -0400 +++ b/mpc-library/receipt Wed May 01 08:44:22 2019 +0100 @@ -1,33 +1,34 @@ # SliTaz package receipt. PACKAGE="mpc-library" -VERSION="1.0.3" +VERSION="1.1.0" CATEGORY="development" -SHORT_DESC="MPC is a C library for the arithmetic of complex numbers." +SHORT_DESC="A C library for the arithmetic of complex numbers." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://www.multiprecision.org/" + SOURCE="mpc" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="http://www.multiprecision.org/" -WGET_URL="http://www.multiprecision.org/mpc/download/$TARBALL" +WGET_URL="$GNU_MIRROR/$SOURCE/$TARBALL" + +DEPENDS="gmp mpfr" +BUILD_DEPENDS="gmp-dev mpfr-dev" + HOST_ARCH="i486 arm" -#BUGS="Shared libs dont build with 0.9" - -DEPENDS="mpfr gmp" -BUILD_DEPENDS="mpfr-dev gmp-dev" - compile_rules() { - #patch -Np1 -i $stuff/libmpc-0.9-configure_cflags_egrep_issue.patch - ./configure $CONFIGURE_ARGS && make && make install + ./configure $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib $fs/usr + cp -a $install/usr/include $fs/usr } -