mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
It's a PostgreSQL extension, there's a convention to prefix their pkgname with postgresql-.
35 lines
1 KiB
Text
35 lines
1 KiB
Text
# Contributor: G.J.R. Timmer <gjr.timmer@gmail.com>
|
|
# Maintainer: G.J.R. Timmer <gjr.timmer@gmail.com>
|
|
pkgname=postgresql-pg_cron
|
|
_projname=pg_cron
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc="Cron-based scheduler for PostgreSQL 9.5+"
|
|
url="https://github.com/citusdata/pg_cron"
|
|
arch="all"
|
|
license="PostgreSQL"
|
|
depends="postgresql"
|
|
makedepends="postgresql-dev"
|
|
provides="pg_cron=$pkgver-r$pkgrel"
|
|
install="$pkgname.post-install"
|
|
source="https://github.com/citusdata/pg_cron/archive/v$pkgver/$_projname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_projname-$pkgver"
|
|
options="!check" # no tests provided
|
|
|
|
prepare() {
|
|
default_prepare
|
|
# Remove -Werror from Makefile
|
|
# Required to compile on alpine, to ignore compilation warnings
|
|
sed "s/-Werror //" -i Makefile
|
|
}
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
sha512sums="fe11fc42fa8d3de4ff08440f96bcc5c228408ae01f7c1cf676d8dbab6ebef9aa0496aa3d5e785ec850eee3b484dc7ec0bf930a9c09e4267d10375adb9027f0b1 pg_cron-1.2.0.tar.gz"
|