wok view libcomerr3/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 2e998ebdc270
children de0af891e9d3
line source
1 # SliTaz package receipt.
3 PACKAGE="libcomerr3"
4 VERSION="1.17"
5 CATEGORY="security"
6 SHORT_DESC="The libcomerr v3 library files."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://web.mit.edu/kerberos/"
10 WANTED="krb5"
12 DEPENDS="libkrb5support"
13 PROVIDE="libcomerr"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 while read file; do
19 dir=$(dirname "$file")
20 [ -d $fs$dir ] || mkdir -p $fs$dir
21 cp -a $install$file $fs$dir
22 chmod +x $fs$file
23 done < $wanted_stuff/$PACKAGE.files-list
24 }