wok view cdrkit/receipt @ rev 67

Flex: add symlink /usr/bin/lex
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 24 13:20:13 2007 +0100 (2007-12-24)
parents
children 429d92485f72
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.cdrkit.org/"
10 WGET_URL="http://cdrkit.org/releases/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 make
17 make install PREFIX=$PWD/_pkg/usr
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/bin
24 cp $_pkg/usr/bin/genisoimage $fs/usr/bin
25 cp $_pkg/usr/bin/wodim $fs/usr/bin
26 strip -s $fs/usr/bin/*
27 }