wok diff mutagen/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents 11579844d239
children 2e5434fe0bdb
line diff
     1.1 --- a/mutagen/receipt	Sat Apr 06 15:17:07 2013 +0200
     1.2 +++ b/mutagen/receipt	Sat Aug 10 17:00:38 2013 +0000
     1.3 @@ -5,25 +5,27 @@
     1.4  CATEGORY="multimedia"
     1.5  SHORT_DESC="python module for audio meta data"
     1.6  MAINTAINER="rj.rohit@gmail.com"
     1.7 -DEPENDS="python"
     1.8 -BUILD_DEPENDS="python-dev"
     1.9 +LICENSE="GPL2"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://quodlibet.googlecode.com/files" 
    1.12  WGET_URL="$WEB_SITE/$TARBALL"
    1.13  
    1.14 +DEPENDS="python"
    1.15 +BUILD_DEPENDS="python-dev"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20  	cd $src
    1.21  	python setup.py build
    1.22 -	python setup.py install --root=$PWD/_pkg
    1.23 +	python setup.py install --root=$DESTDIR
    1.24  }
    1.25  
    1.26  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.27  genpkg_rules()
    1.28  {
    1.29  	mkdir -p $fs/usr/lib
    1.30 -	cp -a $_pkg/usr/bin $fs/usr
    1.31 -	cp -a $_pkg/usr/lib/* $fs/usr/lib/	
    1.32 +	cp -a $install/usr/bin $fs/usr
    1.33 +	cp -a $install/usr/lib/* $fs/usr/lib/	
    1.34  }
    1.35