wok annotate id3v2/receipt @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
parents
children 76b72f1ad63c
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@13234 8 DEPENDS="id3lib"
pascal@13234 9 BUILD_DEPENDS="id3lib-dev"
pascal@13234 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13234 11 WEB_SITE="http://id3v2.sourceforge.net/"
pascal@13234 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@13234 13
pascal@13234 14 # Rules to configure and make the package.
pascal@13234 15 compile_rules()
pascal@13234 16 {
pascal@13234 17 cd $src
pascal@13234 18 make
pascal@13234 19 }
pascal@13234 20
pascal@13234 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13234 22 genpkg_rules()
pascal@13234 23 {
pascal@13234 24 mkdir -p $fs/usr/bin
pascal@13234 25 cp -a $src/$PACKAGE $fs/usr/bin
pascal@13234 26 chown -R root.root $fs
pascal@13234 27 }
pascal@13234 28