wok view isomaster/receipt @ rev 71

Removed meta pkg xorg-proto (xorg-dev-proto do the job)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 25 17:16:56 2007 +0100 (2007-12-25)
parents 8e742fadbc43
children 4959e5789caa
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"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make PREFIX=/usr
18 make PREFIX=/usr DESTDIR=$PWD/_pkg install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share/locale $fs/usr/share/pixmaps
25 cp -a $_pkg/usr/bin $fs/usr
26 strip -s $fs/usr/bin/*
27 # Pixmap (24x24), icons and locale fr stuff.
28 cp -a stuff/isomaster.png $fs/usr/share/pixmaps
29 cp -a $_pkg/usr/share/isomaster $fs/usr/share
30 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
31 }