wok annotate id3v2/receipt @ rev 18945

Up: vlc (2.2.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 03 17:32:17 2016 +0100 (2016-03-03)
parents 15c045f565df
children ba7cbdb5749c
rev   line source
pascal@13234 1 # SliTaz package receipt.
pascal@13234 2
pascal@13234 3 PACKAGE="id3v2"
pascal@13234 4 VERSION="0.1.12"
pascal@13234 5 CATEGORY="multimedia"
pascal@13234 6 SHORT_DESC="A command line editor for id3v2 tags."
pascal@13234 7 MAINTAINER="paul@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
pascal@13234 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13234 10 WEB_SITE="http://id3v2.sourceforge.net/"
pascal@13234 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@13234 12
pascal@14996 13 DEPENDS="id3lib"
pascal@14996 14 BUILD_DEPENDS="id3lib-dev"
pascal@14996 15
pascal@13234 16 # Rules to configure and make the package.
pascal@13234 17 compile_rules()
pascal@13234 18 {
pascal@13234 19 cd $src
pascal@13234 20 make
pascal@13234 21 }
pascal@13234 22
pascal@13234 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13234 24 genpkg_rules()
pascal@13234 25 {
pascal@13234 26 mkdir -p $fs/usr/bin
pascal@13234 27 cp -a $src/$PACKAGE $fs/usr/bin
pascal@13234 28 chown -R root.root $fs
pascal@13234 29 }
pascal@13234 30