# hdw - linux unrealircd package # # author: hackbard@hackdaworld.dyndns.org # # [V] 3.2.3 # [S] 3-11 # [D] Unreal3.2.3.tar.gz http://unrealircd.fyrebird.net/ xver=`echo $ver | awk -F. '{ print $1 "." $2 }'` # we always install ircd to /opt ! prefix="$root/opt/unrealircd" srcdir="Unreal${xver}" confopt="--prefix=$prefix --sysconfdir=$root/etc/opt/unrealircd" confopt="$confopt --localstatedir=$root/var/opt/unrealircd" confopt="$confopt --oldincludedir=$prefix/include" # ircd settings confopt="$confopt --enable-nospoof --enable-hub" # --enable-ssl" confopt="$confopt --enable-dynamic-linking" confopt="$confopt --with-dpath=$root/etc/opt/unrealircd" confopt="$confopt --with-spath=$prefix/bin" # more settings optional, see ./configure --help pre_install() { mkdir -p $prefix/bin }