#! /usr/bin/env sh LOCAL_SUFFIX="breminale" GLUON_DIR="gluon/" KEYFILE="$HOME/.ecdsakey" local_version=1 set -eu if which realpath > /dev/null; then GLUON_SITEDIR="$(dirname "$(realpath "$0")")" else GLUON_SITEDIR="$(dirname "$(readlink -f "$0")")" fi export GLUON_SITEDIR get_GLUON_TAG() { if ! git --git-dir="${GLUON_DIR}/.git" describe --exact-match; then echo 'The gluon tree is not checked out at a tag.' echo 'Please use `git checkout ` to use an official gluon release' echo 'or build it manually. Only with at a tag we can autogenerate the' echo 'release string!' exit 1 fi } debug= if [ "$#" -gt 0 ]; then if [ "$1" = '-h' -o "$1" = '--help' ]; then cat <