wok-current view cdrkit/receipt @ rev 119
Fixed lighttpd permissions (/etc + /var/www)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Jan 05 21:54:43 2008 +0100 (2008-01-05) |
parents | b5491484fd8d |
children | cdac43c3f44f |
line source
1 # SliTaz package receipt.
3 PACKAGE="cdrkit"
4 VERSION="1.1.6"
5 CATEGORY="base-apps"
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 }