wok diff grep/receipt @ rev 21605
Up opus (1.3.1)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 23 13:26:20 2019 +0200 (2019-05-23) |
parents | 8563f3c36069 |
children | cc3cefae8ca2 |
line diff
1.1 --- a/grep/receipt Sat Jun 18 20:11:48 2016 +0300 1.2 +++ b/grep/receipt Thu May 23 13:26:20 2019 +0200 1.3 @@ -1,13 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="grep" 1.7 -VERSION="2.25" 1.8 +VERSION="3.3" 1.9 CATEGORY="development" 1.10 SHORT_DESC="GNU Global Regular Expression Print." 1.11 MAINTAINER="paul@slitaz.org" 1.12 LICENSE="GPL3" 1.13 +WEB_SITE="https://www.gnu.org/software/grep/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.16 -WEB_SITE="http://www.gnu.org/software/grep/" 1.17 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.18 1.19 DEPENDS="pcre" 1.20 @@ -17,7 +18,8 @@ 1.21 compile_rules() 1.22 { 1.23 ./configure $CONFIGURE_ARGS && 1.24 - make && make install 1.25 + make -j 1 && 1.26 + make install 1.27 1.28 find $install/usr/share/man -type f -exec gzip -9 \{\} \; 1.29 } 1.30 @@ -26,8 +28,8 @@ 1.31 genpkg_rules() 1.32 { 1.33 mkdir -p $fs/usr/share 1.34 - cp -a $install/usr/bin $fs 1.35 - cp -a $install/usr/share/man $fs/usr/share 1.36 + cp -a $install/usr/bin $fs 1.37 + cp -a $install/usr/share/man $fs/usr/share 1.38 } 1.39 1.40 post_remove()