wok view mysql-dev/receipt @ rev 5914

v4l-dvb: break on build error
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 27 14:27:30 2010 +0200 (2010-07-27)
parents 41efe35c6d3b
children 0d38e6b0c9a7
line source
1 # SliTaz package receipt.
3 PACKAGE="mysql-dev"
4 VERSION="5.1.38"
5 CATEGORY="development"
6 SHORT_DESC="SQL database system devel files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="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
16 cp -a $_pkg/usr/include $fs/usr
17 cp -a $_pkg/usr/lib/mysql/*.*a $fs/usr/lib/mysql
18 cp -a $_pkg/usr/lib/mysql/plugin/*.*a $fs/usr/lib/mysql/plugin
19 while read file; do
20 dir=$(dirname $file)
21 [ -d $fs$dir ] || mkdir -p $fs$dir
22 cp -a $_pkg$file $fs$file
23 done < $WOK/$WANTED/stuff/$PACKAGE.files-list
24 }