50 lines
1.3 KiB
Bash
50 lines
1.3 KiB
Bash
# Template file for 'kcgi'
|
|
pkgname=kcgi
|
|
version=0.13.3
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="PREFIX=/usr MANDIR=/usr/share/man SBINDIR=/usr/bin"
|
|
make_cmd="bmake"
|
|
make_check_target="regress"
|
|
hostmakedepends="bmake which pkg-config"
|
|
makedepends="zlib-devel"
|
|
checkdepends="libcurl-devel"
|
|
short_desc="Minimal CGI library for web applications in C"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="ISC"
|
|
homepage="http://kristaps.bsd.lv/kcgi/"
|
|
changelog="https://kristaps.bsd.lv/kcgi/archive.html"
|
|
distfiles="http://kristaps.bsd.lv/kcgi/snapshots/kcgi-${version}.tgz"
|
|
checksum=1c13538e21511086a6ba1a87f40543de257fc3d8871840b17626c16d714d2f5a
|
|
|
|
export CFLAGS="-DENABLE_SECCOMP_FILTER=1"
|
|
|
|
seccomp_audit_get_suffix() {
|
|
case "$1" in
|
|
i686*) echo "X86" ;;
|
|
x86_64*) echo "X86_64" ;;
|
|
arm*) echo "ARM" ;;
|
|
aarch64*) echo "AARCH64" ;;
|
|
ppc64le*) echo "PPC64LE" ;;
|
|
ppc64*) echo "PPC64" ;;
|
|
ppc*) echo "PPC" ;;
|
|
*) echo "UNKNOWN" ;;
|
|
esac
|
|
}
|
|
|
|
post_configure() {
|
|
local suffix origsuffix
|
|
suffix="$(seccomp_audit_get_suffix ${XBPS_TARGET_MACHINE})"
|
|
origsuffix="$(seccomp_audit_get_suffix ${XBPS_MACHINE})"
|
|
if [ "$suffix" != "UNKNOWN" ]; then
|
|
sed -i "s/AUDIT_ARCH_${origsuffix}/AUDIT_ARCH_${suffix}/" config.h
|
|
else
|
|
sed -i "/AUDIT_ARCH_${origsuffix}/d" config.h
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
sed -n '2,16p' kcgi.c > LICENSE
|
|
vlicense LICENSE
|
|
}
|