wok view mariadb-dev/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents 2b545d56eedc
children b56b38cfd475
line source
1 # SliTaz package receipt.
3 PACKAGE="mariadb-dev"
4 VERSION="10.0.11"
5 CATEGORY="development"
6 SHORT_DESC="SQL database system devel files."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://mariadb.org/"
10 WANTED="mariadb"
11 PROVIDE="mysql-dev"
13 DEPENDS="zlib"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/lib/mysql/plugin $fs/usr/share
19 cp -a $install/usr/include $fs/usr
20 cp -a $install/usr/share/aclocal $fs/usr/share
21 cp -a $install/usr/lib/mysql/*.*a $fs/usr/lib/mysql
22 #~ cp -a $install/usr/lib/mysql/plugin/*.*a $fs/usr/lib/mysql/plugin
23 while read file; do
24 dir=$(dirname $file)
25 [ -d $fs$dir ] || mkdir -p $fs$dir
26 cp -a $install$file $fs$file
27 done < $wanted_stuff/$PACKAGE.files-list
28 }