# HG changeset patch # User Hans-G?nter Theisgen # Date 1559572894 -3600 # Node ID 2f427dd95bbcb30668c9c5506bf05118db1056e1 # Parent e7c057e9eeda36e60398f5ac6b5527f216506908 updated plsh (1.20130823 -> 1.20171014) diff -r e7c057e9eeda -r 2f427dd95bbc plsh/receipt --- a/plsh/receipt Sun Jun 02 17:14:48 2019 +0100 +++ b/plsh/receipt Mon Jun 03 15:41:34 2019 +0100 @@ -1,13 +1,14 @@ # SliTaz package receipt. PACKAGE="plsh" -VERSION="1.20130823" +VERSION="1.20171014" CATEGORY="misc" SHORT_DESC="A procedural language handler for PostgreSQL using any shell." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" +WEB_SITE="https://github.com/petere/plsh" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://github.com/petere/plsh" WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" DEPENDS="postgresql" @@ -22,10 +23,12 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/postgresql $fs/usr/share/postgresql/extension + mkdir -p $fs/usr/lib/postgresql + mkdir -p $fs/usr/share/postgresql/extension mkdir -p $install/usr/share/doc - cp $src/plsh.so $fs/usr/lib/postgresql - cp $src/plsh*.sql $fs/usr/share/postgresql/extension - cp $src/plsh.control $fs/usr/share/postgresql/extension - cp $src/[CNR]* $install/usr/share/doc + + cp $src/plsh.so $fs/usr/lib/postgresql + cp $src/plsh*.sql $fs/usr/share/postgresql/extension + cp $src/plsh.control $fs/usr/share/postgresql/extension + cp $src/[CNR]* $install/usr/share/doc }