wok view isomaster/receipt @ rev 169

Typo and deps for tcpdump
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 30 00:08:43 2008 +0100 (2008-01-30)
parents f80752ee205e
children c1ba24889104
line source
1 # SliTaz package receipt.
3 PACKAGE="isomaster"
4 VERSION="1.3"
5 CATEGORY="extra"
6 SHORT_DESC="Graphical CD image (ISO) editor."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://littlesvr.ca/isomaster/"
11 WGET_URL="http://littlesvr.ca/isomaster/releases/$TARBALL"
12 JWM_MENU='Utilities:<Program icon="isomaster.png" label="ISO Master">isomaster</Program>'
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make PREFIX=/usr
19 make PREFIX=/usr DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share/locale $fs/usr/share/pixmaps
26 cp -a $_pkg/usr/bin $fs/usr
27 strip -s $fs/usr/bin/*
28 # Pixmap (24x24), icons and locale fr stuff.
29 cp -a stuff/isomaster.png $fs/usr/share/pixmaps
30 cp -a $_pkg/usr/share/isomaster $fs/usr/share
31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
32 }