wok view tazbug-website/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 d57d733bbb57
children
line source
1 # SliTaz package receipt.
3 PACKAGE="tazbug-website"
4 VERSION="152"
5 CATEGORY="misc"
6 SHORT_DESC="SliTaz Bug Tracker web interface"
7 MAINTAINER="fredericguilbault@live.ca"
8 LICENSE="BSD"
9 WEB_SITE="http://bugs.slitaz.org"
10 WANTED="tazbug"
12 DEPENDS="busybox gettext-base slitaz-base-files"
13 BUILD_DEPENDS="gettext"
14 SIBLINGS="tazbug"
16 # Use compile_rules with: make && make DESTDIR=$DESTDIR install-web
17 compile_rules()
18 {
19 make && make install-web
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a ${WOK}/${pkg}/install/* ${fs}
26 # Will run without tweaking configs in cgi-bin/
27 mkdir -p ${fs}/var/www/cgi-bin
28 mv ${fs}/var/www/bugs ${fs}/var/www/cgi-bin
29 }