wok-next diff dvd+rw-tools/receipt @ rev 4946
Fix: get-wifi-firmware TARBALL variable
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Feb 16 22:35:26 2010 +0100 (2010-02-16) |
parents | |
children | 740ce2db95e0 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dvd+rw-tools/receipt Tue Feb 16 22:35:26 2010 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="dvd+rw-tools" 1.7 +VERSION="7.1" 1.8 +CATEGORY="multimedia" 1.9 +SHORT_DESC="DVD RW tools" 1.10 +MAINTAINER="jozee@slitaz.org" 1.11 +DEPENDS="cdrkit" 1.12 +BUILD_DEPENDS="cdrkit gcc-lib-base m4" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://fy.chalmers.se/~appro/linux/DVD+RW" 1.15 +WGET_URL="$WEB_SITE/tools/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + patch -p1 -i ../stuff/build-7.1.patch 1.22 + make 1.23 + mkdir -p $PWD/_pkg/usr/bin/ 1.24 + for bin in growisofs dvd+rw-booktype dvd+rw-format dvd+rw-mediainfo dvd-ram-control; do 1.25 + install -m755 $bin $PWD/_pkg/usr/bin/ 1.26 + done 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr/bin 1.33 + cp -a $_pkg/usr/bin/growisofs $fs/usr/bin 1.34 + 1.35 +}