void-packages/srcpkgs/prosody/template
Duncaen 7af658cf88
prosody: update to 0.11.9.
Fixes:
* CVE-2021-32918
* CVE-2021-32920
* CVE-2021-32921
* CVE-2021-32917
* CVE-2021-32919
2021-05-15 02:24:49 +02:00

52 lines
1.3 KiB
Bash

# Template file for 'prosody'
pkgname=prosody
version=0.11.9
revision=1
build_style=configure
configure_args="
--ostype=linux
--prefix=/usr
--no-example-certs
--with-lua-include=${XBPS_CROSS_BASE}/usr/include/lua5.1
--with-lua=${XBPS_CROSS_BASE}/usr
--lua-version=5.1
--lua-suffix=5.1
--runwith=lua5.1"
conf_files="
/etc/prosody/prosody.cfg.lua
/etc/prosody/certs/localhost.cnf
/etc/prosody/certs/openssl.cnf
/etc/prosody/certs/makefile
/etc/prosody/certs/GNUmakefile"
make_dirs="/var/lib/prosody 0755 prosody prosody"
makedepends="lua51-devel openssl-devel libidn-devel"
depends="lua51-luasocket lua51-luafilesystem lua51-luaexpat lua51-luasec
lua51-BitOp"
short_desc="Lightweight and extensible Jabber/XMPP server written in Lua"
maintainer="Duncaen <duncaen@voidlinux.org>"
license="MIT"
homepage="https://prosody.im/"
distfiles="https://prosody.im/downloads/source/${pkgname}-${version}.tar.gz"
checksum=ccc032aea49d858635fb93644db276de6812be83073a8d80e9b4508095deff09
system_accounts="prosody"
prosody_homedir="/var/lib/prosody"
case "$XBPS_TARGET_MACHINE" in
*-musl) CFLAGS="-DWITHOUT_MALLINFO" ;;
esac
post_configure() {
vsed -e "/^CFLAGS=/s|$| ${CFLAGS}|" \
-e "s|^CC=.*|CC=${CC}|" \
-e 's|^LD=.*|LD=${CC}|' \
-i config.unix
}
pre_build() {
cp -f ${FILESDIR}/prosody.cfg.lua prosody.cfg.lua.dist
}
post_install() {
vsv prosody
vlicense COPYING
}