1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 02:05:16 +03:00
aports/community/postgresql-hypopg/APKBUILD
Jakub Jirutka 9424973b1f community/*: rebuild against postgresql15
All aports that makedepend on postgresql-dev, except
postgresql-timescaledb that still doesn't support PostgreSQL 15 -
I will deal with it later.
2022-11-22 00:02:58 +01:00

28 lines
792 B
Text

# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=postgresql-hypopg
_projname=hypopg
pkgver=1.3.1
pkgrel=2
pkgdesc="An extension adding hypothetical indexes in PostgreSQL"
url="https://github.com/HypoPG/hypopg"
arch="all"
license="PostgreSQL"
makedepends="postgresql-dev"
source="https://github.com/HypoPG/hypopg/archive/$pkgver/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_projname-$pkgver"
options="!check" # tests require running PostgreSQL
build() {
make
}
package() {
depends="postgresql$(pg_config --major-version)"
make install DESTDIR="$pkgdir"
}
sha512sums="
4426df50499e3485be18d7569ca829be702d30a273c5ee584f6d5c0d49e7d19bb079c3922a30c8e73530785c76b458864ec7555f65163614b4d0cfc4bd78b814 postgresql-hypopg-1.3.1.tar.gz
"