- Disable static libraries.
[fedora-mingw.git] / pixman / make-pixman-snapshot.sh
1 #!/bin/sh
2
3 DIRNAME=pixman-$( date +%Y%m%d )
4
5 rm -rf $DIRNAME
6 git clone git://git.freedesktop.org/git/pixman $DIRNAME
7 cd $DIRNAME
8 if [ -z "$1" ]; then
9     git log | head -1
10 else
11     git checkout $1
12 fi
13 rm -rf .git
14 cd ..
15 tar jcf $DIRNAME.tar.bz2 $DIRNAME
16 rm -rf $DIRNAME