aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/git-version-gen
blob: 31209e2f0c96567a77fcecba7b9682dd72842615 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

if [ "$#" -ne 1 ]
then
  echo "usage: git-version-gen <verfile>" >&2
  exit 1
fi

DEF_VER=4.6.0
VERFILE="$1"

if [ -d '.git' ]
then
  git update-index --refresh > /dev/null 2>&1
  VERSION=`git describe --abbrev=4 --match='v[0-9]*' --dirty 2>/dev/null`
  VERSION=`echo "$VERSION" | sed 's/^v//'`
  [ -n "$VERSION" ] && printf "%s" "$VERSION" >"$VERFILE"
fi

[ -f "$VERFILE" ] || printf "%s" "$DEF_VER" >"$VERFILE"

cat "$VERFILE"