wok view isomaster/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents f1df64ee89af
children 08f8778dd4ac
line source
1 # SliTaz package receipt.
3 PACKAGE="isomaster"
4 VERSION="1.3.14"
5 CATEGORY="utilities"
6 TAGS="ISO editor"
7 SHORT_DESC="Graphical ISO image editor."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://littlesvr.ca/isomaster/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="${WEB_SITE}releases/$TARBALL"
15 DEPENDS="gtk+ libxml2 xorg-libXdamage"
16 BUILD_DEPENDS="xorg-dev gtk+-dev libxml2-dev intltool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 make PREFIX=/usr &&
22 mkdir -p $install/usr/share/doc/bkisofs
23 make PREFIX=/usr DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share $fs/etc
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/isomaster $fs/usr/share
34 rm $fs/usr/share/isomaster/icons/isomaster.png
36 cp -a $stuff/skel $fs/etc/skel
38 chown -R 0.0 $fs
39 }