Put SVN revision in the version string
[mplayer/glamo.git] / version.sh
blobf83ad5222ad5f24a555e1479ec79f12857fd2714
1 #!/bin/sh
3 OS=`uname -s`
4 case "$OS" in
5 CYGWIN*|Linux|MINGW*)
6 last_cvs_update=r`grep committed-rev .svn/entries | head -n 1 | cut -d '"' -f 2 2>/dev/null`
7 ;;
8 Darwin|*BSD*)
9 # BSD 'date -r' does not print modification time
10 # LC_ALL=C sets month/day order and English language in the date string
11 # The if in the awk call works around wrong day/month order.
12 last_cvs_update=`LC_ALL=C ls -lT .svn | \
13 awk '{ \
14 day=$7; \
15 month=index(" JanFebMarAprMayJunJulAugSepOctNovDec", $6); \
16 if(month==0) { \
17 day=$6; \
18 month=index(" JanFebMarAprMayJunJulAugSepOctNovDec",$7); } \
19 printf("%s%.02d%.02d-%s", \
20 substr($9, 3, 2), (month+1)/3, day, substr($8, 0, 5)); \
21 }'`
24 last_cvs_update=`date +%y%m%d-%H:%M`
26 esac
28 extra=""
29 if test "$1" ; then
30 extra="-$1"
32 echo "#define VERSION \"dev-SVN-${last_cvs_update}${extra}\"" >version.h