36 lines
1011 B
Bash
36 lines
1011 B
Bash
# Template file for 'kore'
|
|
pkgname=kore
|
|
version=4.2.3
|
|
revision=5
|
|
# arch specific seccomp stuff
|
|
archs="x86_64* aarch64* ppc64*"
|
|
build_style=gnu-makefile
|
|
make_use_env=yes
|
|
make_build_args="CURL=1 TASKS=1 PGSQL=1 JSONRPC=1 ACME=1"
|
|
hostmakedepends="postgresql-libs-devel"
|
|
makedepends="openssl-devel libcurl-devel postgresql-libs-devel yajl-devel"
|
|
short_desc="Easy to use web platform for writing scalable web APIs in C"
|
|
maintainer="Helmut Pozimski <helmut@pozimski.eu>"
|
|
license="ISC"
|
|
homepage="https://kore.io"
|
|
distfiles="https://kore.io/releases/kore-${version}.tar.gz"
|
|
checksum=f9a9727af97441ae87ff9250e374b9fe3a32a3348b25cb50bd2b7de5ec7f5d82
|
|
disable_parallel_build=yes
|
|
# openssl3 fix
|
|
CFLAGS+=" -Wno-deprecated-declarations -Wno-discarded-qualifiers"
|
|
|
|
export TARGET_PLATFORM=${XBPS_TARGET_MACHINE}
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
|
makedepends+=" musl-legacy-compat"
|
|
fi
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
makedepends+=" python3-devel"
|
|
make_build_args+=" PYTHON=1"
|
|
fi
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|