# Meta-project to build
PROJECT=deal.II
-DEAL_II_VERSION=v8.3.0
CLEAN_BUILD=false
#########################################################################
#########################################################################
+# Install the following deal.II version:
+DEAL_II_VERSION=v8.3.0
+
+# Would you like to build stable versions of projects?
+# If STABLE_BUILD=false, then the development version of deal.II will be
+# installed.
+STABLE_BUILD=true
+#STABLE_BUILD=false
+
+if [ ${STABLE_BUILD} = "false" ]; then
+ DEAL_II_VERSION=master
+fi
+
+#########################################################################
+
# Do you want to use MKL?
MKL=OFF
# BLAS_DIR=
# Where do you want the compiled software installed?
INSTALL_PATH=${PREFIX_PATH}/${PROJECT}/${DEAL_II_VERSION}
-# Would you like to build stable versions of projects?
-# If STABLE_BUILD=false, then the development version of deal.II will be
-# installed.
-STABLE_BUILD=true
-#STABLE_BUILD=false
-