wok view xorg-server-Xvfb/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 29f2e486ba73
children
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-server-Xvfb"
4 VERSION="1.12.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Xvfb Xorg server."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WANTED="xorg-server"
10 SOURCE="xorg-server"
11 WEB_SITE="https://www.x.org/"
13 DEPENDS="xorg-libXfont zlib pixman libgcrypt xorg-libXv"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/bin
19 cp -a $install/usr/bin/Xvfb $fs/usr/bin
20 chmod 4711 $fs/usr/bin/Xvfb
21 }
23 # We need /var/tmp rw to let xkbcomp builr XKB definition.
24 post_install()
25 {
26 chmod 1777 "$1/var/tmp"
27 }