wok diff discount/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents b81825d54cb6
children fb8526ee16f5
line diff
     1.1 --- a/discount/receipt	Sat Mar 07 23:52:35 2015 +0100
     1.2 +++ b/discount/receipt	Tue Oct 22 12:55:54 2019 +0300
     1.3 @@ -1,24 +1,25 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="discount"
     1.7 -VERSION="2.1.8"
     1.8 +VERSION="2.2.5"
     1.9  CATEGORY="utilities"
    1.10 -SHORT_DESC="a C implementation of the markdown spec"
    1.11 +SHORT_DESC="A C implementation of the markdown language"
    1.12  MAINTAINER="necrophcodr@necrophcodr.me"
    1.13  LICENSE="BSD3"
    1.14 +WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown"
    1.15 +
    1.16  TARBALL="${PACKAGE}-${VERSION}.tar.gz"
    1.17 -WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown"
    1.18 -WGET_URL="${WEB_SITE}/${TARBALL}"
    1.19 -HOST_ARCH="i486 arm"
    1.20 +WGET_URL="https://github.com/Orc/$PACKAGE/archive/v$VERSION/$TARBALL"
    1.21  
    1.22  DEPENDS=""
    1.23  BUILD_DEPENDS=""
    1.24 +HOST_ARCH="i486 arm"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29  	./configure.sh --prefix=/usr &&
    1.30 -	make &&
    1.31 +	make -j 1 &&
    1.32  	make DESTDIR=$DESTDIR install
    1.33  }
    1.34