]> git.sesse.net Git - x264/blob - version.sh
Make version.sh indicate "M" for local commits too
[x264] / version.sh
1 #!/bin/bash
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     fi
9     if git status | grep -q "modified:" ; then
10         VER="${VER}M"
11     fi
12     VER="$VER $(git rev-list HEAD -n 1 | cut -c 1-7)"
13     echo "#define X264_VERSION \" r$VER\""
14 else
15     echo "#define X264_VERSION \"\""
16     VER="x"
17 fi
18 rm -f config.git-hash
19 API=`grep '#define X264_BUILD' < x264.h | sed -e 's/.* \([1-9][0-9]*\).*/\1/'`
20 echo "#define X264_POINTVER \"0.$API.$VER\""