Updating the Encoding Time Calculation
[SFUResearch.git] / version.sh
blob9439702c45b4538c57110011c28a748bf727cae2
1 #!/bin/sh
2 git rev-list HEAD | sort > config.git-hash
3 LOCALVER=`wc -l config.git-hash | awk '{print $1}'`
4 if [ $LOCALVER \> 1 ] ; then
5 VER=`git rev-list origin/master | sort | join config.git-hash - | wc -l | awk '{print $1}'`
6 if [ $VER != $LOCALVER ] ; then
7 VER="$VER+$(($LOCALVER-$VER))"
8 elif git status | grep -q "modified:" ; then
9 VER="${VER}M"
11 VER="$VER $(git rev-list HEAD -n 1 | head -c 7)"
12 echo "#define X264_VERSION \" r$VER\"" >> config.h
13 else
14 echo "#define X264_VERSION \"\"" >> config.h
15 VER="x"
17 rm -f config.git-hash
18 API=`grep '#define X264_BUILD' < x264.h | sed -e 's/.* \([1-9][0-9]*\).*/\1/'`
19 echo "#define X264_POINTVER \"0.$API.$VER\"" >> config.h