void-packages/srcpkgs/ngircd/template
2013-12-03 10:15:10 +01:00

40 lines
969 B
Plaintext

# Template build file for 'ngircd'
pkgname=ngircd
version=21
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=0edbd41304186e43f9d907a7017b40520cc90c2ce29b1339bdcd7622fffe19a0
# 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
}
}