wok view fbvnc/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 38c69652a653
children b9659e3c2111
line source
1 # SliTaz package receipt.
3 PACKAGE="fbvnc"
4 VERSION="20130314"
5 CATEGORY="network"
6 SHORT_DESC="VNC client in frame buffer."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://repo.or.cz/w/fbvnc.git"
11 WGET_URL="git|git://repo.or.cz/fbvnc.git"
12 TAGS="vnc remote-desktop"
13 HOST_ARCH="i486 arm"
15 # Git must be installed in a cross chroot
16 case "$ARCH" in
17 i?86) BUILD_DEPENDS="git" ;;
18 esac
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 #patch -p0 < $stuff/fbvnc.u &&
24 sed -i s"/cc/${HOST_SYSTEM}-gcc/" Makefile &&
25 make
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin
32 cp -a $src/fbvnc $fs/usr/bin
33 }