wok view vcdimager/receipt @ rev 3279

add elinks
author Allan Pinto <allan316@gmail.com>
date Tue Jun 02 18:26:46 2009 +0000 (2009-06-02)
parents
children f917e0dfdfbd
line source
1 # SliTaz package receipt
3 PACKAGE="vcdimager"
4 VERSION="0.7.23"
5 CATEGORY="multimedia"
6 SHORT_DESC="vcd tools"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libcdio libxml2 popt"
9 BUILD_DEPENDS="libcdio libcdio-dev libxml2-dev popt-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.vcdimager.org/"
12 WGET_URL="ftp://ftp.gnu.org/gnu/vcdimager/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $_pkg/usr/bin/vcdimager $fs/usr/bin
30 }