wok-next rev 21591

updated discount (2.1.8 -> 2.2.6)
author Hans-G?nter Theisgen
date Wed Jun 24 07:16:34 2020 +0100 (2020-06-24)
parents e30533e0c5f7
children 06e976a33a5a
files dhcp/receipt dhcp6/receipt discount/receipt
line diff
     1.1 --- a/dhcp/receipt	Wed Jun 24 07:00:06 2020 +0100
     1.2 +++ b/dhcp/receipt	Wed Jun 24 07:16:34 2020 +0100
     1.3 @@ -26,7 +26,7 @@
     1.4  	./configure		\
     1.5  		--disable-dhcpv6	\
     1.6  		$CONFIGURE_ARGS &&
     1.7 -	make &&
     1.8 +	make -j1 &&
     1.9  	make DESTDIR=$install install || return 1
    1.10  
    1.11  	mkdir -p $install/etc/init.d
     2.1 --- a/dhcp6/receipt	Wed Jun 24 07:00:06 2020 +0100
     2.2 +++ b/dhcp6/receipt	Wed Jun 24 07:16:34 2020 +0100
     2.3 @@ -25,7 +25,7 @@
     2.4  		server/ddns.c
     2.5  
     2.6  	./configure $CONFIGURE_ARGS &&
     2.7 -	make &&
     2.8 +	make -j1 &&
     2.9  	make DESTDIR=$install install || return 1
    2.10  
    2.11  	mkdir -p $install/etc/init.d
     3.1 --- a/discount/receipt	Wed Jun 24 07:00:06 2020 +0100
     3.2 +++ b/discount/receipt	Wed Jun 24 07:16:34 2020 +0100
     3.3 @@ -1,25 +1,27 @@
     3.4  # SliTaz package receipt v2.
     3.5  
     3.6  PACKAGE="discount"
     3.7 -VERSION="2.1.8"
     3.8 +VERSION="2.2.6"
     3.9  CATEGORY="utilities"
    3.10 -SHORT_DESC="C implementation of the markdown spec"
    3.11 -MAINTAINER="devel@slitaz.org"
    3.12 +SHORT_DESC="C implementation of the markdown language"
    3.13 +MAINTAINER="maintainer@slitaz.org"
    3.14  LICENSE="BSD3"
    3.15  WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown/"
    3.16  
    3.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.18 -WGET_URL="$WEB_SITE/$TARBALL"
    3.19 +WGET_URL="https://github.com/Orc/discount/archive/v$VERSION/$TARBALL"
    3.20  
    3.21  SPLIT="$PACKAGE-dev"
    3.22  
    3.23 -compile_rules() {
    3.24 +compile_rules()
    3.25 +{
    3.26  	./configure.sh --prefix=/usr &&
    3.27 -	make &&
    3.28 +	make -j1 &&
    3.29  	make DESTDIR=$install install
    3.30  }
    3.31  
    3.32 -genpkg_rules() {
    3.33 +genpkg_rules()
    3.34 +{
    3.35  	case $PACKAGE in
    3.36  		discount) copy @std;;
    3.37  		*-dev)    copy @dev;;