wok view syslinux-tools/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 cd7c78f2f061
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="syslinux-tools"
4 VERSION="4.06"
5 CATEGORY="system-tools"
6 SHORT_DESC="Misc perl tools"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WANTED="syslinux"
10 WEB_SITE="http://syslinux.zytor.com/"
11 DEPENDS="perl"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/bin $fs/usr/share/boot
17 for i in keytab-lilo lss16toppm ppmtolss16 mkdiskimage \
18 syslinux2ansi ; do
19 cp -a $src/utils/$i $fs/usr/bin
20 done
21 cp -a $src/utils/isohybrid $fs/usr/bin/isohybrid.bin
22 cp -a $src/iso2exe/isohybrid.exe $fs/usr/share/boot
23 cp -a $src/iso2exe/meminfo.exe $fs/usr/share/boot
24 cp -a $src/iso2exe/tazboot.exe $fs/usr/share/boot
25 cp -a $src/dosutil/eltorito.sys $fs/usr/share/boot
26 find $fs/usr -exec chown root.root {} \;
27 }