Commit | Line | Data |
---|---|---|
f1cc88a5 DB |
1 | #!/bin/sh |
2 | ||
123103ca | 3 | # check for SVN revision number |
2b229186 | 4 | revision=$(cat snapshot_version 2> /dev/null) |
10671cf5 | 5 | test $revision || revision=$(cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2) |
d33a14e4 DB |
6 | test $revision || revision=$(cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2) |
7 | test $revision || revision=$(cd "$1" && sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null) | |
123103ca | 8 | test $revision && revision=SVN-r$revision |
a66d63a9 | 9 | |
40eaf780 AJ |
10 | # check for git short hash |
11 | if ! test $revision; then | |
d33a14e4 | 12 | revision=$(cd "$1" && git log -1 --pretty=format:%h) |
40eaf780 AJ |
13 | test $revision && revision=git-$revision |
14 | fi | |
15 | ||
de2c2b5a | 16 | # no revision number found |
123103ca AJ |
17 | test $revision || revision=UNKNOWN |
18 | ||
de2c2b5a DB |
19 | # releases extract the version number from the VERSION file |
20 | version=$(cat VERSION 2> /dev/null) | |
21 | test $version || version=$revision | |
ac63af34 | 22 | |
de2c2b5a DB |
23 | test -n "$3" && version=$version-$3 |
24 | ||
25 | NEW_REVISION="#define FFMPEG_VERSION \"$version\"" | |
d33a14e4 | 26 | OLD_REVISION=$(cat version.h 2> /dev/null) |
f1cc88a5 DB |
27 | |
28 | # Update version.h only on revision changes to avoid spurious rebuilds | |
29 | if test "$NEW_REVISION" != "$OLD_REVISION"; then | |
9e6165b5 | 30 | echo "$NEW_REVISION" > "$2" |
f1cc88a5 | 31 | fi |