1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-05-21 16:47:28 +02:00
Files
FFmpeg/version.sh
T

30 lines
738 B
Bash
Raw Normal View History

2006-06-20 10:24:08 +00:00
#!/bin/sh
# check for git short hash
2010-10-06 15:36:58 +01:00
if ! test "$revision"; then
revision=$(cd "$1" && git describe --tags --match N 2> /dev/null)
2010-10-06 15:36:58 +01:00
test "$revision" && revision=git-$revision
fi
# no revision number found
2010-10-06 15:36:58 +01:00
test "$revision" || revision=UNKNOWN
# releases extract the version number from the VERSION file
2010-01-07 19:23:50 +00:00
version=$(cd "$1" && cat VERSION 2> /dev/null)
2010-10-06 15:36:58 +01:00
test "$version" || version=$revision
test -n "$3" && version=$version-$3
if [ -z "$2" ]; then
echo "$version"
exit
fi
NEW_REVISION="#define FFMPEG_VERSION \"$version\""
OLD_REVISION=$(cat version.h 2> /dev/null)
2006-06-20 10:24:08 +00:00
# Update version.h only on revision changes to avoid spurious rebuilds
if test "$NEW_REVISION" != "$OLD_REVISION"; then
2008-06-19 16:57:38 +00:00
echo "$NEW_REVISION" > "$2"
2006-06-20 10:24:08 +00:00
fi