wok annotate libpostgresqlclient/receipt @ rev 22806

updated get-algobox (1.00 -> 1.01)
author Hans-G?nter Theisgen
date Tue Jan 28 15:57:03 2020 +0100 (2020-01-28)
parents e2ec3520cf88
children
rev   line source
pascal@1149 1 # SliTaz package receipt.
pascal@1149 2
pascal@1149 3 PACKAGE="libpostgresqlclient"
pascal@14029 4 VERSION="9.2.3"
pascal@1423 5 CATEGORY="misc"
pascal@1149 6 SHORT_DESC="SQL database system libraries."
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@1149 11
pascal@20236 12 DEPENDS="libboost-chrono libboost-date-time mpfr"
pascal@20236 13
pascal@1149 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1149 15 genpkg_rules()
pascal@1149 16 {
pascal@1149 17 while read file; do
pascal@1149 18 dir=$(dirname $file)
pascal@1149 19 [ -d $fs$dir ] || mkdir -p $fs$dir
pascal@14029 20 cp -a $install$file $fs$file
slaxemulator@11412 21 done < $wanted_stuff/$PACKAGE.files-list
pascal@2209 22 ln -s /usr/lib/postgresql/libpq.so.5 $fs/usr/lib/libpq.so.5
pascal@1149 23 }
pascal@1149 24