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