]> git.sesse.net Git - x264/blob - version.sh
Add Windows resource file
[x264] / version.sh
1 #!/bin/bash
2 [ -n "$1" ] && cd $1
3 git rev-list HEAD | sort > config.git-hash
4 LOCALVER=`wc -l config.git-hash | awk '{print $1}'`
5 if [ $LOCALVER \> 1 ] ; then
6     VER=`git rev-list origin/master | sort | join config.git-hash - | wc -l | awk '{print $1}'`
7     VER_DIFF=$(($LOCALVER-$VER))
8     echo "#define X264_REV $VER"
9     echo "#define X264_REV_DIFF $VER_DIFF"
10     if [ $VER_DIFF != 0 ] ; then
11         VER="$VER+$VER_DIFF"
12     fi
13     if git status | grep -q "modified:" ; then
14         VER="${VER}M"
15     fi
16     VER="$VER $(git rev-list HEAD -n 1 | cut -c 1-7)"
17     echo "#define X264_VERSION \" r$VER\""
18 else
19     echo "#define X264_VERSION \"\""
20     VER="x"
21 fi
22 rm -f config.git-hash
23 API=`grep '#define X264_BUILD' < x264.h | sed -e 's/.* \([1-9][0-9]*\).*/\1/'`
24 echo "#define X264_POINTVER \"0.$API.$VER\""