wok annotate postgresql-client/receipt @ rev 23833
updated picard (1.4.0.5 -> 2.3.1)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jun 01 07:18:17 2020 +0100 (2020-06-01) |
parents | 51a1ebbda768 |
children |
rev | line source |
---|---|
pascal@1149 | 1 # SliTaz package receipt. |
pascal@1149 | 2 |
pascal@1149 | 3 PACKAGE="postgresql-client" |
pascal@14029 | 4 VERSION="9.2.3" |
pascal@1423 | 5 CATEGORY="misc" |
pascal@1149 | 6 SHORT_DESC="SQL database system client files." |
pascal@1149 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15375 | 8 LICENSE="BSD" |
pascal@20669 | 9 WEB_SITE="https://www.postgresql.org/" |
pascal@1149 | 10 WANTED="postgresql" |
pascal@7823 | 11 PROVIDE="mysql_or_postgresql" |
pascal@1149 | 12 |
pascal@15375 | 13 DEPENDS="libpostgresqlclient zlib ncurses readline" |
pascal@15375 | 14 |
pascal@1149 | 15 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1149 | 16 genpkg_rules() |
pascal@1149 | 17 { |
pascal@1149 | 18 while read file; do |
pascal@1149 | 19 dir=$(dirname $file) |
pascal@1149 | 20 [ -d $fs$dir ] || mkdir -p $fs$dir |
pascal@14029 | 21 cp -a $install$file $fs$file |
slaxemulator@9700 | 22 done < $wanted_stuff/$PACKAGE.files-list |
pascal@1149 | 23 } |
pascal@1149 | 24 |