wok-next diff gmp/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents a5d7827e08cf
children e19ff076dc63
line diff
     1.1 --- a/gmp/receipt	Fri Apr 13 09:28:50 2018 +0300
     1.2 +++ b/gmp/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.3 @@ -4,7 +4,7 @@
     1.4  VERSION="6.1.2"
     1.5  CATEGORY="libdevel"
     1.6  SHORT_DESC="GNU Multiple Precision Arithmetic Library"
     1.7 -MAINTAINER="pankso@slitaz.org"
     1.8 +MAINTAINER="devel@slitaz.org"
     1.9  LICENSE="GPL3"
    1.10  WEB_SITE="https://gmplib.org/"
    1.11  LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/gmp.html"
    1.12 @@ -13,7 +13,7 @@
    1.13  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.14  
    1.15  BUILD_DEPENDS="binutils m4 ncurses-dev readline-dev texinfo"
    1.16 -SPLIT="gmp-dev"
    1.17 +SPLIT="$PACKAGE-dev"
    1.18  
    1.19  compile_rules() {
    1.20  	# Create generic libraries
    1.21 @@ -26,14 +26,16 @@
    1.22  		$CONFIGURE_ARGS &&
    1.23  	fix libtool &&
    1.24  	# -j > 1 make install fails.
    1.25 -	make && make html &&
    1.26 -	make install && make install-html
    1.27 +	make &&
    1.28 +	make html &&
    1.29 +	make install &&
    1.30 +	make install-html
    1.31  }
    1.32  
    1.33  testsuite() {
    1.34  	checklog=$(mktemp)
    1.35  	make check 2>&1 | tee $checklog
    1.36 -	pass=$(awk '/# PASS:/{total+=$3} ; END{print total}' $checklog)
    1.37 +	pass=$(awk '/# PASS:/{total+=$3}; END{print total}' $checklog)
    1.38  	echo "$pass / 190 tests passed"
    1.39  	rm $checklog
    1.40  }