diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-10-06 12:07:01 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-10-06 12:07:35 +0200 |
commit | 07dc7e7b57a38f7a8ca41f71453e478d46380172 (patch) | |
tree | 5b5b7789401cd31f3b91a6275f30fd9ad9c462da /testing | |
parent | 15f9eb0e442a74b23ed1ecec1799a646c6646c11 (diff) | |
download | aports-07dc7e7b57a38f7a8ca41f71453e478d46380172.tar.bz2 aports-07dc7e7b57a38f7a8ca41f71453e478d46380172.tar.xz |
testing/postgresql-plpgsql_check: new aport
https://github.com/okbob/plpgsql_check
Additional tools for plpgsql functions validation
Diffstat (limited to 'testing')
-rw-r--r-- | testing/postgresql-plpgsql_check/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/postgresql-plpgsql_check/APKBUILD b/testing/postgresql-plpgsql_check/APKBUILD new file mode 100644 index 0000000000..d816f5988a --- /dev/null +++ b/testing/postgresql-plpgsql_check/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Jakub Jirutka <jakub@jirutka.cz> +# Maintainer: Jakub Jirutka <jakub@jirutka.cz> +pkgname=postgresql-plpgsql_check +_pkgname=plpgsql_check +pkgver=1.2.1 +pkgrel=0 +pkgdesc="Additional tools for plpgsql functions validation" +url="https://github.com/okbob/plpgsql_check" +arch="all" +license="BSD" +depends="postgresql" +makedepends="postgresql-dev" +source="$_pkgname-$pkgver.tar.gz::https://github.com/okbob/$_pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" +options="!check" # XXX: installcheck requires running PostgreSQL + +build() { + cd "$builddir" + make USE_PGXS=1 all +} + +package() { + cd "$builddir" + make USE_PGXS=1 DESTDIR="$pkgdir" install +} + +sha512sums="bf41a9e89b387d172780264707a5e33d30ffecda76ed29d7077c477f3c70a554a86e41a8fb8f9accb773e6e1d4f0e5744b6d012db00cf2e20ded2b350ec5121d plpgsql_check-1.2.1.tar.gz" |