mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2026-01-09 14:23:30 +00:00
intltool and glib-gettext are somehow related, and upstream gettext should now support everything needed for GNOME projects. intltool support never really worked, and we removed some of its commented usage a while ago when dropping spicy desktop/mime. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
21 lines
424 B
Bash
Executable File
21 lines
424 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
|
|
)
|
|
|
|
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
|