Skip to content

Instantly share code, notes, and snippets.

@arran4
Created June 9, 2013 01:02
Show Gist options
  • Save arran4/5737164 to your computer and use it in GitHub Desktop.
Save arran4/5737164 to your computer and use it in GitHub Desktop.
Some of my /tmp working scripts from 04.
#!/bin/bash
#cvs updater of dcgui 0.3.0 cvs release
cd /tmp
rm -rf dclib dcgui
cvs -z3 -d:pserver:anonymous@cvs.dcgui.berlios.de:/cvsroot/dcgui co -r dc-0_3_0 dclib
cvs -z3 -d:pserver:anonymous@cvs.dcgui.berlios.de:/cvsroot/dcgui co -r dc-0_3_0 dcgui
cd dclib
export WANT_AUTOCONF_2_5=1
make -f Makefile.dist
./configure
make
make uninstall
make install
cd ..
cd dcgui
export WANT_AUTOCONF_2_5=1
make -f Makefile.dist
./configure
make
make uninstall
make install
cd ..
rm -rf dclib dcgui
echo "DCGUI-qt / DClib updated"
exit 0
@arran4
Copy link
Author

arran4 commented Jun 9, 2013

I used to work out of /tmp because of... CVS in those days. I did the same with SVN.. Git on the otherhand because it creates a local branch doesn't really allow for that type of usage.

@arran4
Copy link
Author

arran4 commented Jun 9, 2013

Well I mean you can do it. But it's a bit silly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment