FreonLinux/pkgbuild/hexchat.build

20 lines
285 B
Plaintext
Executable File

cd $tmpdir
# Grab sources for hexchat
if [ ! -d $hexchatsrcdir ]; then
wget $hexchatmirror/$hexchat
tar -xf $hexchat
fi
cd $hexchatsrcdir
./autogen.sh
./configure --prefix=$freondir --disable-python --disable-lua --disable-perl
make
make install
cd $tmpdir