wok view mysql-dev/receipt @ rev 14053

Add freetuxtv
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 19 18:35:30 2013 +0100 (2013-02-19)
parents d1768332cee0
children 408c87fa22ca
line source
1 # SliTaz package receipt.
3 PACKAGE="mysql-dev"
4 VERSION="5.5.27"
5 CATEGORY="development"
6 SHORT_DESC="SQL database system devel files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="libmysqlclient zlib"
9 WEB_SITE="http://www.mysql.com/"
10 WANTED="mysql"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 mkdir -p $fs/usr/lib/mysql/plugin $fs/usr/share
16 cp -a $install/usr/include $fs/usr
17 while read file; do
18 dir=$(dirname $file)
19 [ -d $fs$dir ] || mkdir -p $fs$dir
20 cp -a $install$file $fs$file
21 done < $wanted_stuff/$PACKAGE.files-list
22 }