void-packages/srcpkgs/ngircd/template
2013-08-29 09:29:06 +02:00

40 lines
971 B
Plaintext

# Template build file for 'ngircd'
pkgname=ngircd
version=20.3
revision=1
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=55d7c74c6df790b11a68c07f39836d581965087efb618d3e9a6bec855364c2f9
# 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
}
}