wok diff mariadb-dev/receipt @ rev 15146
cocoalib: create Makefile_dependencies (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 15 12:56:59 2013 +0000 (2013-08-15) |
parents | 62b209782f2d |
children | 2b545d56eedc |
line diff
1.1 --- a/mariadb-dev/receipt Wed Jul 17 13:30:02 2013 +0200 1.2 +++ b/mariadb-dev/receipt Thu Aug 15 12:56:59 2013 +0000 1.3 @@ -5,22 +5,24 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="SQL database system devel files." 1.6 MAINTAINER="erjo@slitaz.org" 1.7 -DEPENDS="zlib" 1.8 +LICENSE="GPL2" 1.9 WEB_SITE="http://mariadb.org/" 1.10 WANTED="mariadb" 1.11 PROVIDE="mysql-dev" 1.12 1.13 +DEPENDS="zlib" 1.14 + 1.15 # Rules to gen a SliTaz package suitable for Tazpkg. 1.16 genpkg_rules() 1.17 { 1.18 mkdir -p $fs/usr/lib/mysql/plugin $fs/usr/share 1.19 - cp -a $_pkg/usr/include $fs/usr 1.20 - cp -a $_pkg/usr/share/aclocal $fs/usr/share 1.21 - cp -a $_pkg/usr/lib/mysql/*.*a $fs/usr/lib/mysql 1.22 - #~ cp -a $_pkg/usr/lib/mysql/plugin/*.*a $fs/usr/lib/mysql/plugin 1.23 + cp -a $install/usr/include $fs/usr 1.24 + cp -a $install/usr/share/aclocal $fs/usr/share 1.25 + cp -a $install/usr/lib/mysql/*.*a $fs/usr/lib/mysql 1.26 + #~ cp -a $install/usr/lib/mysql/plugin/*.*a $fs/usr/lib/mysql/plugin 1.27 while read file; do 1.28 dir=$(dirname $file) 1.29 [ -d $fs$dir ] || mkdir -p $fs$dir 1.30 - cp -a $_pkg$file $fs$file 1.31 + cp -a $install$file $fs$file 1.32 done < $wanted_stuff/$PACKAGE.files-list 1.33 }