45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
# Template file for 'inspircd'
|
|
pkgname=inspircd
|
|
version=4.0.1
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
hostmakedepends="perl pkg-config"
|
|
makedepends="gnutls-devel libmaxminddb-devel openssl-devel sqlite-devel"
|
|
short_desc="Modular Internet Relay Chat server"
|
|
maintainer="Alexander Gehrke <void@qwertyuiop.de>"
|
|
license="GPL-2.0-only"
|
|
homepage="http://www.inspircd.org/"
|
|
distfiles="https://github.com/inspircd/inspircd/archive/v${version}.tar.gz"
|
|
checksum=3e00d545593f2f2585792585b58501bfc953dc16ae1f35dc55333ccb57d6ef5d
|
|
|
|
system_accounts="inspircd"
|
|
inspircd_homedir="/var/lib/inspircd"
|
|
make_dirs="
|
|
/run/inspircd 0750 ${pkgname} ${pkgname}
|
|
/var/log/inspircd 0750 ${pkgname} ${pkgname}
|
|
/var/lib/inspircd 0750 ${pkgname} ${pkgname}"
|
|
|
|
pre_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# configure script runs compiled executables to check for compiler features
|
|
vsed -i '/return 0 unless.*test_file(/d' make/configure.pm
|
|
vsed -i 's/@COMPILER_EXTRA_LDLIBS@//' make/template/main.mk
|
|
fi
|
|
}
|
|
|
|
do_configure() {
|
|
./configure \
|
|
--enable-extras "geo_maxmind log_syslog regex_posix ssl_gnutls ssl_openssl sslrehashsignal sqlite3"
|
|
./configure \
|
|
--disable-auto-extras \
|
|
--disable-ownership \
|
|
--distribution-label voidlinux-${revision} \
|
|
--system
|
|
vsed -i 's/-ldl/& -lm/' GNUmakefile
|
|
}
|
|
|
|
post_install() {
|
|
vsv inspircd
|
|
vdoc "${FILESDIR}/README.voidlinux"
|
|
}
|