wok-6.x view cdrtools/receipt @ rev 19288
Check manpages... to cgames.
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Wed Jul 06 10:09:09 2016 +0300 (2016-07-06) | 
| parents | bef53513f3c4 | 
| children | 9dbba587fe4e | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="cdrtools"
     4 VERSION="3.00"
     5 CATEGORY="multimedia"
     6 SHORT_DESC="Command line programs to record CD/DVD/BluRay media."
     7 MAINTAINER="paul@slitaz.org"
     8 LICENSE="GPL2 LGPL2.1"
     9 WEB_SITE="http://cdrecord.berlios.de/private/cdrecord.html"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WGET_URL="ftp://ftp.berlios.de/pub/cdrecord/$TARBALL"
    13 DEPENDS=""
    15 # Rules to configure and make the package.
    16 compile_rules()
    17 {
    18 	# hack makefile
    19 	cd $src/DEFAULTS
    20 	sed -i 's/DEFINSGRP=	bin/DEFINSGRP=	root/' Defaults.linux
    21 	cd ..
    22 	{
    23 		./configure
    24 		make && make DESTDIR=$DESTDIR install
    25 	} 2>&1 | sed 's/: No such/:  no such/'
    27 	mkdir -p $install/usr
    28 	mv $install/opt/schily/* $install/usr
    29 }
    31 # Rules to gen a SliTaz package suitable for Tazpkg.
    32 genpkg_rules()
    33 {
    34 	mkdir -p $fs/usr/lib $fs/usr/share
    35 	cp -a $install/etc $fs
    36 	cp -a $install/usr/bin $fs/usr
    37 	cp -a $install/usr/sbin $fs/usr
    38 	cp -a $install/usr/lib/siconv $fs/usr/lib
    39 	cp -a $install/usr/share/doc $fs/usr/share
    40 }