# HG changeset patch # User Christophe Lincoln # Date 1197983508 -3600 # Node ID b5491484fd8d05aa6f10da60ee26ccc8cd1dfbe7 # Parent b4413bf9aece00fdda51f4692f8f4288a56b738e Add : cdrkit + cdrkit-audio diff -r b4413bf9aece -r b5491484fd8d cdrkit-audio/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cdrkit-audio/receipt Tue Dec 18 14:11:48 2007 +0100 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="cdrkit-audio" +VERSION="1.1.6" +CATEGORY="extra" +SHORT_DESC="Icedax, cdda2ogg and other tools for extracting audio files." +MAINTAINER="pankso@slitaz.org" +WANTED="cdrkit" +WEB_SITE="http://www.cdrkit.org/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $_pkg/usr/bin/cdda* $fs/usr/bin + cp $_pkg/usr/bin/icedax $fs/usr/bin + cp $_pkg/usr/bin/pitchplay $fs/usr/bin + strip -s $fs/usr/bin/* 2>/dev/null +} diff -r b4413bf9aece -r b5491484fd8d cdrkit/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cdrkit/receipt Tue Dec 18 14:11:48 2007 +0100 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="cdrkit" +VERSION="1.1.6" +CATEGORY="base-apps" +SHORT_DESC="Wodim for recording/blanking CDs/DVDs and genisoimage for ISO." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.cdrkit.org/" +WGET_URL="http://cdrkit.org/releases/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make + make install PREFIX=$PWD/_pkg/usr +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp $_pkg/usr/bin/genisoimage $fs/usr/bin + cp $_pkg/usr/bin/wodim $fs/usr/bin + strip -s $fs/usr/bin/* +}