wok-6.x diff plsh/receipt @ rev 20434
Add python-terminado
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 31 19:02:12 2018 +0200 (2018-08-31) |
parents | |
children | 2f427dd95bbc |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/plsh/receipt Fri Aug 31 19:02:12 2018 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="plsh" 1.7 +VERSION="1.20130823" 1.8 +CATEGORY="misc" 1.9 +SHORT_DESC="A procedural language handler for PostgreSQL using any shell." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="BSD" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="https://github.com/petere/plsh" 1.14 +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 1.15 + 1.16 +DEPENDS="postgresql" 1.17 +BUILD_DEPENDS="postgresql-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + make 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr/lib/postgresql $fs/usr/share/postgresql/extension 1.29 + mkdir -p $install/usr/share/doc 1.30 + cp $src/plsh.so $fs/usr/lib/postgresql 1.31 + cp $src/plsh*.sql $fs/usr/share/postgresql/extension 1.32 + cp $src/plsh.control $fs/usr/share/postgresql/extension 1.33 + cp $src/[CNR]* $install/usr/share/doc 1.34 +}