wok view cdrkit/receipt @ rev 462

-10 Ko of uncompressible images (isomaster + leafpad)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 20 00:39:20 2008 +0100 (2008-03-20)
parents cdac43c3f44f
children abe995836ff5
line source
1 # SliTaz package receipt.
3 PACKAGE="cdrkit"
4 VERSION="1.1.6"
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 }