mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2026-02-02 11:06:12 +00:00
22 lines
443 B
Bash
Executable File
22 lines
443 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # exit on errors
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
(
|
|
cd "$srcdir"
|
|
git submodule update --init --recursive
|
|
gtkdocize
|
|
autoreconf -v --force --install
|
|
intltoolize -f
|
|
)
|
|
|
|
CONFIGURE_ARGS="--enable-maintainer-mode --enable-gtk-doc --with-gtk=3.0 --enable-vala"
|
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
echo "Running configure with $CONFIGURE_ARGS $@"
|
|
"$srcdir/configure" $CONFIGURE_ARGS "$@"
|
|
fi
|