aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2021-11-09 02:00:04 +0100
committerJakub Jirutka <jakub@jirutka.cz>2021-11-12 01:49:33 +0100
commite6a9a52a144916dc8e6dd158b7c054f3b4498c23 (patch)
treea15ec958595d55fd58c7a3fff5289b111eb2137f
parent7aeba4d15492cedb2124c4c09c91dee572dd86fb (diff)
community/postgresql-sequential-uuids: rebuild against postgresql14
-rw-r--r--community/postgresql-sequential-uuids/APKBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/community/postgresql-sequential-uuids/APKBUILD b/community/postgresql-sequential-uuids/APKBUILD
index c4c47757c2e..817889b6cd3 100644
--- a/community/postgresql-sequential-uuids/APKBUILD
+++ b/community/postgresql-sequential-uuids/APKBUILD
@@ -5,12 +5,11 @@ _projname=sequential-uuids
pkgver=1.0.1
# Upstream doesn't use tags yet (https://github.com/tvondra/sequential-uuids/issues/7).
_gitrev=665d5b18d17d9f3922b17facadedbcd8aefe1524
-pkgrel=2
+pkgrel=3
pkgdesc="Generator of sequential UUIDs for PostgreSQL"
url="https://github.com/tvondra/sequential-uuids"
arch="all"
license="MIT"
-depends="postgresql"
makedepends="postgresql-dev"
source="https://github.com/tvondra/sequential-uuids/archive/$_gitrev/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_projname-$_gitrev"
@@ -21,6 +20,8 @@ build() {
}
package() {
+ depends="postgresql$(pg_config --major-version)"
+
make DESTDIR="$pkgdir" install
}