hexchat/autogen.sh

23 lines
414 B
Bash
Raw Normal View History

#!/bin/sh
# Run this to generate all the initial makefiles, etc.
2011-02-23 22:14:30 -05:00
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
2011-02-23 22:14:30 -05:00
NOCONFIGURE=1
PKG_NAME="hexchat"
2011-02-23 22:14:30 -05:00
(test -f $srcdir/src/common/hexchat.c) || {
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
echo " top-level $PKG_NAME directory"
exit 1
}
2011-02-23 22:14:30 -05:00
which gnome-autogen.sh || {
echo "You need to install gnome-common"
exit 1
}
2011-02-23 22:14:30 -05:00
. gnome-autogen.sh
2011-02-23 22:14:30 -05:00