wok diff gmp/receipt @ rev 23529
updated python-pip (19.0.3 -> 20.0.2)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 06 14:44:29 2020 +0100 (2020-04-06) |
parents | a78610b2eb47 |
children | 3cdc90c472a2 |
line diff
1.1 --- a/gmp/receipt Mon Jan 21 12:26:11 2019 +0100 1.2 +++ b/gmp/receipt Mon Apr 06 14:44:29 2020 +0100 1.3 @@ -1,32 +1,34 @@ 1.4 # SliTaz package receipt 1.5 1.6 PACKAGE="gmp" 1.7 -VERSION="6.1.2" 1.8 +VERSION="6.2.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="GNU Multiple Precision Arithmetic Library." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL3" 1.13 +WEB_SITE="https://gmplib.org/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 -WEB_SITE="https://gmplib.org/" 1.17 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.18 -HOST_ARCH="i486 arm" 1.19 1.20 BUILD_DEPENDS="binutils m4" 1.21 1.22 +HOST_ARCH="i486 arm" 1.23 + 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 - ./configure \ 1.28 - --enable-cxx \ 1.29 + ./configure \ 1.30 + --enable-cxx \ 1.31 $CONFIGURE_ARGS && 1.32 - # -j > 1 make install fails. 1.33 - make && make -j 1 install 1.34 + # make -j > 1 install fails. 1.35 + make && 1.36 + make -j 1 install 1.37 } 1.38 1.39 # Rules to gen a SliTaz package suitable for Tazpkg. 1.40 genpkg_rules() 1.41 { 1.42 mkdir -p $fs/usr/lib 1.43 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.44 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.45 } 1.46 -