wok view dvd+rw-tools/receipt @ rev 2804

update qt-4.4.1 to qt-4.5.0
author Allan Pinto <allan316@gmail.com>
date Wed Apr 29 09:28:07 2009 +0000 (2009-04-29)
parents
children 740ce2db95e0
line source
1 # SliTaz package receipt.
3 PACKAGE="dvd+rw-tools"
4 VERSION="7.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="DVD RW tools"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="cdrkit"
9 BUILD_DEPENDS="cdrkit gcc-lib-base m4"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://fy.chalmers.se/~appro/linux/DVD+RW"
12 WGET_URL="$WEB_SITE/tools/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -p1 -i ../stuff/build-7.1.patch
19 make
20 mkdir -p $PWD/_pkg/usr/bin/
21 for bin in growisofs dvd+rw-booktype dvd+rw-format dvd+rw-mediainfo dvd-ram-control; do
22 install -m755 $bin $PWD/_pkg/usr/bin/
23 done
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $_pkg/usr/bin/growisofs $fs/usr/bin
32 }