wok diff slang-dev/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 47e1df965953
children
line diff
     1.1 --- a/slang-dev/receipt	Thu Dec 05 13:21:20 2013 +0000
     1.2 +++ b/slang-dev/receipt	Tue Oct 22 12:55:54 2019 +0300
     1.3 @@ -1,22 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="slang-dev"
     1.7 -VERSION="2.2.4"
     1.8 +VERSION="2.3.2"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="S-Lang library dev files"
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://jedsoft.org/slang/"
    1.14 +
    1.15 +DEPENDS="pkg-config slang"
    1.16  WANTED="slang"
    1.17 -WEB_SITE="http://www.s-lang.org/index.html"
    1.18 -
    1.19 -DEPENDS="slang pkg-config"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib 
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.27 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.28 +
    1.29 +	cp -a $install/usr/include		$fs/usr
    1.30 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.31 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.32  }
    1.33 -