wok rev 19481

Add picard
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Nov 02 03:55:15 2016 +0200 (2016-11-02)
parents 1a7f0416f9b1
children 70afe2c27c16
files picard/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/picard/receipt	Wed Nov 02 03:55:15 2016 +0200
     1.3 @@ -0,0 +1,30 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="picard"
     1.7 +VERSION="1.4.0.5"
     1.8 +# Last v 1.3.2 released on 7 Jan 2015, but project is actively developed
     1.9 +COMMIT="46dbab9"
    1.10 +CATEGORY="utilities"
    1.11 +SHORT_DESC="Picard is a cross-platform music tagger written in Python"
    1.12 +MAINTAINER="al.bobylev@gmail.com"
    1.13 +LICENSE="GPL2"
    1.14 +WEB_SITE="https://picard.musicbrainz.org/"
    1.15 +TARBALL="$PACKAGE-$COMMIT.tar.gz"
    1.16 +WGET_URL="https://github.com/metabrainz/picard/archive/$COMMIT.tar.gz"
    1.17 +
    1.18 +DEPENDS="python PyQt-x11-gpl mutagen"
    1.19 +BUILD_DEPENDS="python-dev PyQt-x11-gpl mutagen svgcleaner"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	python setup.py install --root="$install"
    1.25 +	cook_compress_png
    1.26 +	find $install -name '*.svg' -exec svgcleaner \{\} \{\} \;
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	cp -a $install/* $fs
    1.33 +}