X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/04fed8e4657d28df3ca947ea34c2a5d8f9ccc02f..61d7dd11d4a450a64f2817ee4db0ec7fa5880b42:/bin/makeclem diff --git a/bin/makeclem b/bin/makeclem new file mode 100755 index 0000000..788de8a --- /dev/null +++ b/bin/makeclem @@ -0,0 +1,19 @@ +#!/bin/bash + +SRC_PATH=~/src +CLEM=clementine +DIR=$SRC_PATH/$CLEM +LOG=$DIR/build.log + +PWD=`pwd` +if [ ! -d $DIR ]; then + svn co http://clementine-player.googlecode.com/svn/trunk/ $DIR +fi +cd $DIR +echo `date` > $LOG +svn up --accept theirs-full >> $LOG +cd bin +cmake .. >> $LOG +make >> $LOG +cd $PWD +