wok-current view mysql-test/receipt @ rev 20383

p11-kit update: 0.6 (2011) -> 0.23.12 (2018)
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Jun 20 09:49:15 2018 +0000 (2018-06-20)
parents 96e4513829cd
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="mysql-test"
4 VERSION="5.5.27"
5 CATEGORY="misc"
6 SHORT_DESC="SQL database system tests and benchs."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.mysql.com/"
10 WANTED="mysql"
12 DEPENDS="mysql perl"
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/share/mysql-test
19 cp -a $install/usr/sql-bench $fs/usr/share/sql-bench
20 find $fs/usr/share/mysql-test $fs/usr/share/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 }