2013-11-24 04:43:40 +01:00
|
|
|
#!/bin/sh
|
2014-01-13 03:31:28 +01:00
|
|
|
# Run this to generate all the initial makefiles, etc.
|
2011-02-24 04:14:30 +01:00
|
|
|
|
2014-01-13 03:31:28 +01:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
2011-02-24 04:14:30 +01:00
|
|
|
|
2014-01-13 03:31:28 +01:00
|
|
|
NOCONFIGURE=1
|
|
|
|
PKG_NAME="hexchat"
|
2011-02-24 04:14:30 +01:00
|
|
|
|
2014-01-13 03:31:28 +01: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-24 04:14:30 +01:00
|
|
|
|
2014-01-13 03:31:28 +01:00
|
|
|
which gnome-autogen.sh || {
|
|
|
|
echo "You need to install gnome-common"
|
|
|
|
exit 1
|
|
|
|
}
|
2011-02-24 04:14:30 +01:00
|
|
|
|
2014-01-13 03:31:28 +01:00
|
|
|
. gnome-autogen.sh
|
2011-02-24 04:14:30 +01:00
|
|
|
|