1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/community/postgresql-pllua/APKBUILD
Jakub Jirutka e9925bd183 community/postgresql-pllua: move from main
I don't think this should be in the main repository.
2021-06-13 13:58:21 +02:00

46 lines
1.2 KiB
Text

# Contributor: Michael Mason <ms13sp@gmail.com>
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Michael Mason <ms13sp@gmail.com>
pkgname=postgresql-pllua
pkgver=2.0.10
_pkgver="REL_${pkgver//./_}"
pkgrel=0
pkgdesc="Procedural language for PostgreSQL using Lua"
url="https://github.com/RhodiumToad/pllua-ng"
# riscv64: limited by luajit
# s390x: fails to build
arch="all !riscv64 !s390x"
license="MIT"
depends="postgresql"
makedepends="postgresql-dev luajit-dev"
options="!check" # tests require running PostgreSQL
provides="pllua=$pkgver-r$pkgrel" # for backward compatibility
replaces="pllua" # for backward compatibility
subpackages="$pkgname-dev"
source="https://github.com/RhodiumToad/pllua-ng/archive/$_pkgver/pllua-ng-$_pkgver.tar.gz"
builddir="$srcdir/pllua-ng-$_pkgver"
case "$CARCH" in
s390x) makedepends="$makedepends llvm clang" ;;
esac
build() {
_make
}
package() {
_make DESTDIR="$pkgdir" install
}
_make() {
make \
LUAJIT=luajit \
LUA_INCDIR=$(pkgconf --variable=includedir luajit) \
LUALIB=$(pkgconf --libs luajit) \
USE_PGXS=1 \
"$@"
}
sha512sums="
35f0d53e364d61b5d28af4e722aad454c323b549e86c3c05e8c5e7858f0903b22416151cb1292649303cc11ae16519c7a306a86a3cab2041c59f424803536899 pllua-ng-REL_2_0_10.tar.gz
"