forked from vgmstream/vgmstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version-get.sh
executable file
·50 lines (43 loc) · 1.51 KB
/
version-get.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/sh
# echo current git version (doesn't make version_auto.h)
VERSION_EMPTY=$1
#VERSION_FILE=--
VERSION_NAME=$2
if [ -z "$VERSION_EMPTY" ]; then VERSION_EMPTY=false; fi
#if [ -z "$VERSION_FILE" ]; then VERSION_FILE=version_auto.h; fi
if [ -z "$VERSION_NAME" ]; then VERSION_NAME=VGMSTREAM_VERSION; fi
VERSION_DEFAULT=unknown
# try get version from Git (dynamic), including lightweight tags
if ! command -v git > /dev/null ; then
VERSION=""
else
VERSION=$(git describe --tags --always 2>&1 | tr : _ )
if case "$VERSION" in fatal*) true;; *) false;; esac; then
VERSION=""
fi
fi
if [ ! -z "$VERSION" ]; then
LINE="$VERSION"
else
# try to get version from version.h (static)
#echo "Git version not found, can't autogenerate version (using default)"
# option to output empty line instead of default version, so plugins can detect git-less builds
if [ "$VERSION_EMPTY" = "true" ]; then
LINE="/* ignored */"
else
LINE="$VERSION_DEFAULT"
while IFS= read -r <&3 ITEM; do
COMP="#define $VERSION_NAME"
if case "$ITEM" in *"$COMP"*) true;; *) false;; esac; then
# clean "#define ..." leaving rXXXX only
REGEX_REMOVE1="#define $VERSION_NAME \""
REGEX_REMOVE2="\".*"
LINE="$ITEM"
LINE=$(echo $LINE | sed "s/$REGEX_REMOVE1//")
LINE=$(echo $LINE | sed "s/$REGEX_REMOVE2//")
fi
done 3< "version.h"
fi
fi
# final print
echo "$LINE"