wok view gitso/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 04434444ef20
children 34e801e0eb52
line source
1 # SliTaz package receipt.
3 PACKAGE="gitso"
4 VERSION="0.6"
5 CATEGORY="network"
6 SHORT_DESC="Frontend to reverse VNC connections."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="${PACKAGE}_${VERSION}_src.tar.bz2"
10 WEB_SITE="https://github.com/AustP/Gitso"
11 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/gitso/$TARBALL"
12 CONFIG_FILES="/etc/gitso-hosts"
14 DEPENDS="x11vnc vncviewer wxpython"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 mkdir -p $fs/usr/share/applications $fs/usr/share/gitso $fs/usr/bin $fs/etc
20 cp $src/*.py $fs/usr/share/gitso
21 cp $src/icon.* $fs/usr/share/gitso
22 cp $src/arch/linux/gitso.desktop $fs/usr/share/applications
23 cp $src/arch/linux/gitso $fs/usr/bin
24 touch $fs/etc/gitso-hosts
25 chmod 755 $fs/usr/bin/gitso
26 chmod a+r $fs/usr/share/*/*
27 }