The sass sources now live in a project in GNOME, so they can be used in multiple projects like gnome-shell-extensions. Because of that, add gnome-shell-sass as a submodule and import the sass sources from it.
29 lines
658 B
Bash
Executable File
29 lines
658 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
PKG_NAME="gnome-shell-extensions"
|
|
|
|
test -f $srcdir/configure.ac || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level gnome-shell-extensions directory"
|
|
exit 1
|
|
}
|
|
|
|
# Fetch submodules if needed
|
|
if test ! -f data/gnome-shell-sass/COPYING;
|
|
then
|
|
echo "+ Setting up submodules"
|
|
git submodule init
|
|
fi
|
|
git submodule update
|
|
|
|
which gnome-autogen.sh || {
|
|
echo "You need to install gnome-common from GNOME Git (or from"
|
|
echo "your OS vendor's package manager)."
|
|
exit 1
|
|
}
|
|
. gnome-autogen.sh
|