diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-11 21:57:51 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-12 20:04:47 -0300 |
commit | af6490f1021f24c7ccf13fa2c1ebcd7ee5d488aa (patch) | |
tree | efe7183f0c54767f659a4093af8d3259863bbe45 /community/postgresql-plpgsql_check | |
parent | b9e4bbbd43aa9396843e5e87c464d68b49ead91b (diff) | |
download | aports-af6490f1021f24c7ccf13fa2c1ebcd7ee5d488aa.tar.bz2 aports-af6490f1021f24c7ccf13fa2c1ebcd7ee5d488aa.tar.xz |
community/postgresql-plpgsql_check: upgrade to 1.7.3
Diffstat (limited to 'community/postgresql-plpgsql_check')
-rw-r--r-- | community/postgresql-plpgsql_check/APKBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/community/postgresql-plpgsql_check/APKBUILD b/community/postgresql-plpgsql_check/APKBUILD index 2b9b44b50a..c2699e9717 100644 --- a/community/postgresql-plpgsql_check/APKBUILD +++ b/community/postgresql-plpgsql_check/APKBUILD @@ -2,26 +2,27 @@ # Maintainer: Jakub Jirutka <jakub@jirutka.cz> pkgname=postgresql-plpgsql_check _pkgname=plpgsql_check -pkgver=1.7.2 +pkgver=1.7.3 pkgrel=0 pkgdesc="Additional tools for plpgsql functions validation" url="https://github.com/okbob/plpgsql_check" arch="all" -license="BSD" +license="custom:postcardware" depends="postgresql" makedepends="postgresql-dev" +subpackages="$pkgname-doc" 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 + + install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses } -sha512sums="9292b7546d59777f67624432720bb195209d8b25fbd37233eb2d395cc72096829a9f77aaaa1f391746e346462bfe2c6ef707bf426a1b4b49cdd9505a891d20d0 plpgsql_check-1.7.2.tar.gz" +sha512sums="ba76fa735dfb32a43124af585b7d0562fc8a591a521a9c2bca9b8ad7728839b9ff06b9cea17d056a6fd511616486448b9b10aa3299a62796a78b3e80fcc5a513 plpgsql_check-1.7.3.tar.gz" |