Winescripts

Contents

 

update-wine

#!/bin/bash
#rm -rf ./wine
#export CVSROOT=:pserver:cvs@cvs.winehq.org:/home/wine
#cvs login
#cvs -z 3 checkout wine
#cd ./wine
#cvs -z 3 update
#cvs -z 3 update -PAd
# cvs is being replaced with git
#git clone git://source.winehq.org/git/wine.git winegit
cd winegit
git fetch
git rebase origin

compile-wine

#!/bin/bash
cd /home/bb002/src/wine
echo "Removing ./wine32"
rm -rf ./wine32
mkdir ./wine32
cd ./wine32
echo "Configuring wine"
../winegit/configure
echo "Doing make depend"
make -j3 depend > make.log 2>&1
echo "Doing make"
make -j3 >> make.log 2>&1
#echo "Doing Tests"
#make -k test > test.log 2>&1

Published on 2014-07-27 03:37:15.