wok annotate vcdimager/receipt @ rev 2732

Add: vcdimager, vcdimager-dev, vcdimager-xmltools
author Rohit Joshi <jozee@slitaz.org>
date Fri Apr 24 07:38:33 2009 +0000 (2009-04-24)
parents
children f917e0dfdfbd
rev   line source
jozee@2732 1 # SliTaz package receipt
jozee@2732 2
jozee@2732 3 PACKAGE="vcdimager"
jozee@2732 4 VERSION="0.7.23"
jozee@2732 5 CATEGORY="multimedia"
jozee@2732 6 SHORT_DESC="vcd tools"
jozee@2732 7 MAINTAINER="jozee@slitaz.org"
jozee@2732 8 DEPENDS="libcdio libxml2 popt"
jozee@2732 9 BUILD_DEPENDS="libcdio libcdio-dev libxml2-dev popt-dev"
jozee@2732 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2732 11 WEB_SITE="http://www.vcdimager.org/"
jozee@2732 12 WGET_URL="ftp://ftp.gnu.org/gnu/vcdimager/$TARBALL"
jozee@2732 13
jozee@2732 14 # Rules to configure and make the package.
jozee@2732 15 compile_rules()
jozee@2732 16 {
jozee@2732 17 cd $src
jozee@2732 18 ./configure --prefix=/usr
jozee@2732 19 make
jozee@2732 20 make DESTDIR=$PWD/_pkg install
jozee@2732 21 }
jozee@2732 22
jozee@2732 23 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2732 24 genpkg_rules()
jozee@2732 25 {
jozee@2732 26 mkdir -p $fs/usr/bin
jozee@2732 27 cp -a $_pkg/usr/bin/vcdimager $fs/usr/bin
jozee@2732 28
jozee@2732 29
jozee@2732 30 }