wok diff qarte/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
children e3079653b462
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/qarte/receipt	Tue Oct 22 12:55:54 2019 +0300
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="qarte"
     1.7 +VERSION="1.9.0"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="ARTE public programms manager"
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +LICENSE="GPL3"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="https://launchpad.net/qarte"
    1.14 +WGET_URL="http://oqapy.eu/releases/$TARBALL"
    1.15 +
    1.16 +DEPENDS="python PyQt-x11-gpl notify-python rtmpdump"
    1.17 +BUILD_DEPENDS=""
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	prefix=${install}/usr
    1.23 +	install -D -m 0755 qarte $prefix/bin/qarte
    1.24 +	install -D -m 0644 q_arte.desktop $prefix/share/applications/qarte.desktop
    1.25 +	install -D -m 0644 qarte.png $prefix/share/pixmaps/qarte.png
    1.26 +	mkdir $prefix/share/qarte
    1.27 +	install -m 0644 *.py $prefix/share/qarte
    1.28 +	for dir in commonwidgets crontab locale medias VWidgets
    1.29 +	do
    1.30 +		cp -r $dir $prefix/share/qarte
    1.31 +	done
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	mkdir -p $fs
    1.38 +	cp -a $install/* $fs
    1.39 +}