Moderators: Nexuiz Moderators, Moderators
mkdir -p ~/Games/Nexuiz && cd ~/Games/Nexuiz && svn co svn://svn.icculus.org/nexuiz/trunk
cd ~/Games && svn co svn://svn.icculus.org/twilight/trunk/darkplaces
mkdir -p ~/Games/fteqcc && cd ~/Games/fteqcc && svn co https://fteqw.svn.sourceforge.net/svnroot/fteqw/trunk/engine/qclib/
cd ~/Games/fteqcc/qclib/ && make
cd ~/Games/darkplaces && make cl-nexuiz
cd ~/Games/Nexuiz/trunk/data && make FTEQCC="~/Games/fteqcc/qclib/fteqcc.bin"
cp -R ~/Games/Nexuiz/trunk/misc/buildfiles/osx/Nexuiz.app ~/Games/Nexuiz/trunk/
ln -sf ~/Games/darkplaces/nexuiz-agl ~/Games/Nexuiz/trunk/Nexuiz.app/Contents/MacOS/nexuiz-osx-agl-bin
merlijn wrote:Creating the OSX .app
- Code: Select all
cp -R ~/Games/Nexuiz/trunk/misc/buildfiles/osx/Nexuiz.app ~/Games/Nexuiz/trunk/
cp ~/Games/darkplaces/nexuiz-agl ~/Games/Nexuiz/trunk/Nexuiz.app/Contents/MacOS/nexuiz-osx-agl
updates all for the current directory: ~/.nexuiz/u wrote:#! /bin/sh
path=`dirname "$0"`
(cd darkplaces && "$path/ud")
(cd fteqcc && "$path/uf")
"$path/un"
updates DP for the current dir: ~/.nexuiz/ud wrote:#! /bin/sh
(svnl -v && svn up && make release) 2>&1 | less
updates fteqcc from the current dir: ~/.nexuiz/uf wrote:#! /bin/sh
(svnl -v && svn up && make) 2>&1 | less
updates nexuiz from the current dir: ~/.nexuiz/un wrote:#!/bin/sh
export FTEQCC="$PWD/fteqcc.bin"
(svnl -v && svn up && (cd data; make)) 2>&1 | less
show all svn changes for the current dir (use parameter -v to also show affected files and not just the log message): ~/bin/svnl wrote:#! /bin/sh
exec svn log -r HEAD:BASE "$@"
create all links within current dir: ~/.nexuiz/l wrote:#! /bin/sh
path=`dirname "$0"`
"$path/ld"
"$path/lf"
create DP links: ~/.nexuiz/ld wrote:#! /bin/sh
ln -s "$@" "$HOME/vc/twilight/trunk/darkplaces" darkplaces
ln -s "$@" darkplaces/darkplaces-dedicated nexuiz-dedicated
ln -s "$@" darkplaces/darkplaces-sdl nexuiz-sdl
ln -s "$@" darkplaces/darkplaces-glx nexuiz-glx
create fteqcc links: ~/.nexuiz/lf wrote:#! /bin/sh
ln -s "$@" "$HOME/vc/fteqw/trunk/engine/qclib" fteqcc
ln -s "$@" fteqcc/fteqcc.bin fteqcc.bin
Return to Nexuiz - Development
Users browsing this forum: No registered users and 1 guest