wok-next diff qarte/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | 9f9a38d220f6 |
children |
line diff
1.1 --- a/qarte/receipt Thu Oct 04 15:10:55 2018 +0300 1.2 +++ b/qarte/receipt Fri Nov 02 14:15:08 2018 +0200 1.3 @@ -4,33 +4,27 @@ 1.4 VERSION="1.9.0" 1.5 CATEGORY="multimedia" 1.6 SHORT_DESC="ARTE public programms manager" 1.7 -MAINTAINER="pankso@slitaz.org" 1.8 +MAINTAINER="devel@slitaz.org" 1.9 LICENSE="GPL3" 1.10 +WEB_SITE="https://launchpad.net/qarte" 1.11 + 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 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 +compile_rules() { 1.27 + prefix=$install/usr 1.28 + install -Dm755 qarte $prefix/bin/qarte 1.29 + install -Dm644 q_arte.desktop $prefix/share/applications/qarte.desktop 1.30 + install -Dm644 qarte.png $prefix/share/pixmaps/qarte.png 1.31 mkdir $prefix/share/qarte 1.32 - install -m 0644 *.py $prefix/share/qarte 1.33 - for dir in commonwidgets crontab locale medias VWidgets 1.34 - do 1.35 + install -m644 *.py $prefix/share/qarte 1.36 + for dir in commonwidgets crontab locale medias VWidgets; do 1.37 cp -r $dir $prefix/share/qarte 1.38 done 1.39 } 1.40 1.41 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.42 -genpkg_rules() 1.43 -{ 1.44 +genpkg_rules() { 1.45 mkdir -p $fs 1.46 cp -a $install/* $fs 1.47 + DEPENDS="python pyqt notify-python rtmpdump" 1.48 }