wok-current view mysql-dev/receipt @ rev 13352
Add perl-io-tty, perl-io-stty, perl-number-range, perl-expect, perl-algorithm-permute
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 10 09:49:31 2012 +0200 (2012-09-10) |
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 }