wok-undigest annotate cdrtools/receipt @ rev 260

libbonobo has moved to wok
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 28 22:44:58 2011 +0200 (2011-05-28)
parents
children
rev   line source
paul@162 1 # SliTaz package receipt.
paul@162 2
paul@162 3 PACKAGE="cdrtools"
paul@162 4 VERSION="3.00"
paul@162 5 CATEGORY="multimedia"
paul@162 6 SHORT_DESC="Command line programs to record CD/DVD/BluRay media."
paul@162 7 MAINTAINER="paul@slitaz.org"
paul@162 8 DEPENDS=""
paul@162 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@162 10 WEB_SITE="http://cdrecord.berlios.de/private/cdrecord.html"
paul@162 11 WGET_URL="ftp://ftp.berlios.de/pub/cdrecord/$TARBALL"
paul@162 12
paul@162 13 # Rules to configure and make the package.
paul@162 14 compile_rules()
paul@162 15 {
paul@162 16 # hack makefile
paul@162 17 cd $src/DEFAULTS
paul@162 18 sed -i 's/DEFINSGRP= bin/DEFINSGRP= root/' Defaults.linux
paul@162 19 cd ..
paul@162 20 ./configure
paul@162 21 make && make DESTDIR=$PWD/_pkg install
paul@162 22 }
paul@162 23
paul@162 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@162 25 genpkg_rules()
paul@162 26 {
paul@162 27 mkdir -p $fs/usr/lib $fs/usr/share
paul@162 28 cp -a $_pkg/etc $fs
paul@162 29 cp -a $_pkg/opt/schily/bin $fs/usr
paul@162 30 cp -a $_pkg/opt/schily/sbin $fs/usr
paul@162 31 cp -a $_pkg/opt/schily/lib/siconv $fs/usr/lib
paul@162 32 cp -a $_pkg/opt/schily/share/doc $fs/usr/share
paul@162 33 }
paul@162 34