wok view cdrkit/receipt @ rev 178

Removed cat base-apps and dispatch pkgs
author Christophe Lincoln <pankso@slitaz.org>
date Sat Feb 02 01:23:02 2008 +0100 (2008-02-02)
parents 429d92485f72
children 219f2b20380f
line source
1 # SliTaz package receipt.
3 PACKAGE="cdrkit"
4 VERSION="1.1.6"
5 CATEGORY="extra"
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 }