wok-next diff id3v2/receipt @ rev 21727
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | 76b72f1ad63c |
children |
line diff
1.1 --- a/id3v2/receipt Sat Aug 10 11:00:21 2013 +0000 1.2 +++ b/id3v2/receipt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -1,30 +1,24 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="id3v2" 1.8 VERSION="0.1.12" 1.9 CATEGORY="multimedia" 1.10 -SHORT_DESC="A command line editor for id3v2 tags." 1.11 +SHORT_DESC="A command line editor for id3v2 tags" 1.12 MAINTAINER="paul@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 +WEB_SITE="http://id3v2.sourceforge.net/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://id3v2.sourceforge.net/" 1.18 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.19 1.20 -DEPENDS="id3lib" 1.21 BUILD_DEPENDS="id3lib-dev" 1.22 1.23 -# Rules to configure and make the package. 1.24 -compile_rules() 1.25 -{ 1.26 - cd $src 1.27 - make 1.28 +compile_rules() { 1.29 + make && 1.30 + install -Dm755 $src/id3v2 $install/usr/bin/id3v2 1.31 } 1.32 1.33 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.34 -genpkg_rules() 1.35 -{ 1.36 - mkdir -p $fs/usr/bin 1.37 - cp -a $src/$PACKAGE $fs/usr/bin 1.38 - chown -R root.root $fs 1.39 +genpkg_rules() { 1.40 + copy @std 1.41 + DEPENDS="id3lib" 1.42 } 1.43 -