# Usage: sh -ex QUICK-START -*-shell-script-*- # # This is a simple shell script you can use to build things unattended # (it presumes availability of GNU tar, wget and make in your PATH). # Download it, modify to taste, run it, and report any problems to ttn! ttnsw="http://www.gnuvola.org/software" try=$HOME/tmp/eval g=guile-1.4.1.116 # released 2008-04-16 gsdl=guile-sdl-0.3.9 # released 2007-04-02 mkdir -p $try/bin PATH=$try/bin:$PATH mkdir -p $try/src+build cd $try/src+build wget $ttnsw/guile/$g.tar.gz tar xzf $g.tar.gz cd $g ./configure --prefix $try && make && make install cd .. wget $ttnsw/guile-sdl/$gsdl.tar.gz tar xzf $gsdl.tar.gz cd $gsdl ./configure --prefix $try && make && make check && make install # For the Guile-SDL "make check" you can try "make check INTERACTIVE=1" # instead, to enable tests that require user interaction. After you are # done, you can do "rm -rf $HOME/tmp/eval" to clean up everything.