wok-6.x annotate plsh/receipt @ rev 22482
updated antimicro (1.0 -> 2.23)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Dec 30 15:31:22 2019 +0100 (2019-12-30) |
parents | d1bbfbf0568c |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@20102 | 1 # SliTaz package receipt. |
pascal@20102 | 2 |
pascal@20102 | 3 PACKAGE="plsh" |
Hans-G?nter@21687 | 4 VERSION="1.20171014" |
pascal@20102 | 5 CATEGORY="misc" |
pascal@20102 | 6 SHORT_DESC="A procedural language handler for PostgreSQL using any shell." |
pascal@20102 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20102 | 8 LICENSE="BSD" |
Hans-G?nter@21687 | 9 WEB_SITE="https://github.com/petere/plsh" |
Hans-G?nter@21687 | 10 |
pascal@20102 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20102 | 12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" |
pascal@20102 | 13 |
pascal@20102 | 14 DEPENDS="postgresql" |
pascal@20102 | 15 BUILD_DEPENDS="postgresql-dev" |
pascal@20102 | 16 |
pascal@20102 | 17 # Rules to configure and make the package. |
pascal@20102 | 18 compile_rules() |
pascal@20102 | 19 { |
pascal@20102 | 20 make |
pascal@20102 | 21 } |
pascal@20102 | 22 |
pascal@20102 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20102 | 24 genpkg_rules() |
pascal@20102 | 25 { |
Hans-G?nter@21687 | 26 mkdir -p $fs/usr/lib/postgresql |
Hans-G?nter@21687 | 27 mkdir -p $fs/usr/share/postgresql/extension |
pascal@20102 | 28 mkdir -p $install/usr/share/doc |
Hans-G?nter@21687 | 29 |
Hans-G?nter@21687 | 30 cp $src/plsh.so $fs/usr/lib/postgresql |
Hans-G?nter@21687 | 31 cp $src/plsh*.sql $fs/usr/share/postgresql/extension |
Hans-G?nter@21687 | 32 cp $src/plsh.control $fs/usr/share/postgresql/extension |
Hans-G?nter@21687 | 33 cp $src/[CNR]* $install/usr/share/doc |
pascal@20102 | 34 } |