version.sh 1.0 KB

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