wok view mariadb-test/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.
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 | 92e8a75bdf91 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="mariadb-test"
4 VERSION="10.0.11"
5 CATEGORY="misc"
6 SHORT_DESC="SQL database system tests and benchs."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.mysql.com/"
10 WANTED="mariadb"
12 DEPENDS="mariadb perl libssl"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/usr/share
18 cp -a $install/usr/mysql-test $fs/usr
19 cp -a $install/usr/sql-bench $fs/usr
20 find $fs/usr/mysql-test $fs/usr/sql-bench -type d -exec chmod 2777 {} \;
21 while read file; do
22 dir=$(dirname $file)
23 [ -d $fs$dir ] || mkdir -p $fs$dir
24 cp -a $install$file $fs$file
25 done < $wanted_stuff/$PACKAGE.files-list
26 mv $fs/usr/mysql-test $fs/usr/share/mysql-test
27 mv $fs/usr/sql-bench $fs/usr/share/sql-bench
28 }