wok-next diff mutagen/receipt @ rev 21040

mariadb 10.3.10 (again)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 09 09:48:29 2018 +0200 (2018-11-09)
parents a3c581bf52b8
children aa1e58c82d61
line diff
     1.1 --- a/mutagen/receipt	Fri Aug 10 12:53:17 2018 +0300
     1.2 +++ b/mutagen/receipt	Fri Nov 09 09:48:29 2018 +0200
     1.3 @@ -4,26 +4,21 @@
     1.4  VERSION="1.28"
     1.5  CATEGORY="multimedia"
     1.6  SHORT_DESC="Read and write audio tags for many formats"
     1.7 -MAINTAINER="rj.rohit@gmail.com"
     1.8 +MAINTAINER="devel@slitaz.org"
     1.9  LICENSE="GPL2"
    1.10  WEB_SITE="https://github.com/quodlibet/mutagen"
    1.11  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12  WGET_URL="$WEB_SITE/downloads/$TARBALL" # FIXME
    1.13  TAGS="tagging asf flac m4a mp3 musepack ogg aiff id3"
    1.14  
    1.15 -DEPENDS="python"
    1.16  BUILD_DEPENDS="wget cacerts python"
    1.17  
    1.18 -# Rules to configure and make the package.
    1.19 -compile_rules()
    1.20 -{
    1.21 -	python setup.py build
    1.22 -	python setup.py install --root=$DESTDIR
    1.23 +compile_rules() {
    1.24 +	python -B setup.py build &&
    1.25 +	python -B setup.py install --root=$install
    1.26  }
    1.27  
    1.28 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 -genpkg_rules()
    1.30 -{
    1.31 +genpkg_rules() {
    1.32  	cp -a $install/* $fs
    1.33 +	DEPENDS="python"
    1.34  }
    1.35 -