wok view cdrkit/receipt @ rev 714

openbox: moved menu, autostart.sh, rc.xml and slitaz theme to slitaz-configs
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 02 19:05:18 2008 +0200 (2008-05-02)
parents 219f2b20380f
children 67bd6ea17bda
line source
1 # SliTaz package receipt.
3 PACKAGE="cdrkit"
4 VERSION="1.1.7.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Wodim for recording/blanking CDs/DVDs and genisoimage for ISO."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="cmake libcap-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cdrkit.org/"
11 WGET_URL="http://cdrkit.org/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make
18 make install PREFIX=$PWD/_pkg/usr
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp $_pkg/usr/bin/genisoimage $fs/usr/bin
26 cp $_pkg/usr/bin/wodim $fs/usr/bin
27 strip -s $fs/usr/bin/*
28 }