FreonLinux/pkgbuild/ircii.build

17 lines
247 B
Plaintext
Executable File

cd $tmpdir
# Grab latest sources ircII
if [ ! -d $irciisrcdir ]; then
wget $irciimirror/$ircii
tar -xf $ircii
fi
cd $irciisrcdir
# Configure and build + install
./configure --prefix=$freondir
make -j20
make install
cd $tmpdir