wok view cdrkit/receipt @ rev 753

cdrkit: dependancies
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 06 20:48:50 2008 +0000 (2008-05-06)
parents abe995836ff5
children f3d746fd8166
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 zlib-dev bzip2-dev"
9 DEPENDS="libcap zlib bzlib"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.cdrkit.org/"
12 WGET_URL="http://cdrkit.org/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make
19 make install PREFIX=$PWD/_pkg/usr
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp $_pkg/usr/bin/genisoimage $fs/usr/bin
27 cp $_pkg/usr/bin/wodim $fs/usr/bin
28 strip -s $fs/usr/bin/*
29 }