50 lines
1.3 KiB
Bash
50 lines
1.3 KiB
Bash
# Template file for 'prosody'
|
|
pkgname=prosody
|
|
version=0.11.4
|
|
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 libressl-devel libidn-devel"
|
|
depends="luasocket luafilesystem 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=b5f26fa343c7f32f6242721d6991cb35f5d2a28d2bf59d2bc329a940523704fd
|
|
|
|
system_accounts="prosody"
|
|
prosody_homedir="/var/lib/prosody"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) CFLAGS="-DWITHOUT_MALLINFO" ;;
|
|
esac
|
|
|
|
post_configure() {
|
|
sed -i -e "/^CFLAGS=/s|$| ${CFLAGS}|" \
|
|
-e "s|^CC=.*|CC=${CC}|" \
|
|
-e 's|^LD=.*|LD=${CC}|' \
|
|
config.unix
|
|
}
|
|
pre_build() {
|
|
cp -f ${FILESDIR}/prosody.cfg.lua prosody.cfg.lua.dist
|
|
}
|
|
post_install() {
|
|
vsv prosody
|
|
vlicense COPYING
|
|
}
|