version.sh 868 B

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