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