mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
38 lines
1 KiB
Text
38 lines
1 KiB
Text
# Contributor: Michael Pirogov <vbnet.ru@gmail.com>
|
|
# Maintainer: Michael Pirogov <vbnet.ru@gmail.com>
|
|
pkgname=postgresql-citus
|
|
_projname=citus
|
|
pkgver=11.0.3
|
|
pkgrel=1
|
|
pkgdesc="Scalable PostgreSQL for multi-tenant and real-time analytics workloads"
|
|
url="https://github.com/citusdata/citus"
|
|
arch="all"
|
|
license="AGPL-3.0-only"
|
|
makedepends="autoconf postgresql-dev icu-dev lz4-dev zstd-dev libxml2-dev"
|
|
install="$pkgname.post-install"
|
|
source="https://github.com/citusdata/citus/archive/v$pkgver/$_projname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_projname-$pkgver"
|
|
options="!check" # tests requires running postgresql cluster
|
|
|
|
prepare() {
|
|
default_prepare
|
|
autoreconf -fi
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-libcurl
|
|
make
|
|
}
|
|
|
|
package() {
|
|
depends="postgresql$(pg_config --major-version)"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
sha512sums="
|
|
f4006bec80091236133026622b5829137189b0c75ceceffa339f8059b3914b85766b82012ed73a4b129129c9357b23d6b81cf8ddfb0c4f10d5ee0ea537747b29 citus-11.0.3.tar.gz
|
|
"
|