void-packages/srcpkgs/ngircd/template

40 lines
971 B
Plaintext

# Template build file for 'ngircd'
pkgname=ngircd
version=20.2
revision=2
build_style=gnu-configure
configure_args="--enable-ipv6 --without-ident"
hostmakedepends="pkg-config"
makedepends="zlib-devel"
homepage="http://ngircd.barton.de/"
short_desc="Free, portable and lightweight Internet Relay Chat server"
maintainer="pancake <pancake@nopcode.org>"
license="GPL-2"
distfiles="ftp://ftp.berlios.de/pub/$pkgname/$pkgname-$version.tar.gz"
checksum=306c0ef0d2ceac0836a84ecf871a6bc4dd16c25683aa87c0f172b6e68b93357d
# Package build options
build_options="ssl"
desc_option_ssl="Enable support for SSL"
# Enable ssl by default.
build_options_default="ssl"
if [ "$build_option_ssl" ]; then
configure_args+=" --with-openssl"
makedepends+=" openssl-devel"
else
configure_args+=" --without-openssl"
fi
post_install() {
vinstall ${FILESDIR}/${pkgname}.service 644 usr/lib/systemd/system
}
ngircd_package() {
conf_files="/etc/ngircd.conf"
pkg_install() {
vmove all
}
}