contrib/ngircd/Pkgfile

27 lines
663 B
Plaintext
Raw Normal View History

2019-02-08 17:23:24 +01:00
# Description: A free, portable and lightweight Internet Relay Chat server for small or private network
# URL: https://ngircd.barton.de/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: openssl zlib
name=ngircd
2020-08-25 01:39:05 +02:00
version=26
2019-02-08 17:23:24 +01:00
release=1
source=(http://ngircd.sourceforge.net/pub/$name/$name-$version.tar.gz \
$name $name.conf)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-openssl
make
make DESTDIR=$PKG install
install -d -m 0755 -o $name \
$PKG/var/run/$name
install -D -m 0755 $SRC/$name \
$PKG/etc/rc.d/$name
install -m 0600 $SRC/$name.conf \
$PKG/etc/$name.conf
rm -r $PKG/usr/share/doc
}