mirror of
https://github.com/alexkay/spek.git
synced 2025-04-17 00:52:20 +03:00
22 lines
474 B
Bash
Executable File
22 lines
474 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
PKG_NAME="spek"
|
|
REQUIRED_AUTOMAKE_VERSION=1.7
|
|
|
|
(test -f $srcdir/src/spek.vala \
|
|
&& test -d $srcdir/src) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level spek directory"
|
|
exit 1
|
|
}
|
|
|
|
which gnome-autogen.sh || {
|
|
echo "You need to install gnome-common from the GNOME Git"
|
|
exit 1
|
|
}
|
|
. gnome-autogen.sh
|