Mercurial > hg > dml-home
annotate etc/setup_as_dml.sh @ 4:b2cd63c14b92
New ignore file.
author | samer |
---|---|
date | Sun, 18 Jan 2015 21:03:35 +0000 |
parents | 19d1235ce229 |
children | 21dbe74c63bb |
rev | line source |
---|---|
samer@0 | 1 #!/bin/sh |
samer@0 | 2 |
samer@0 | 3 echo 'THIS IS NOT READY YET!' |
samer@0 | 4 exit 1 |
samer@0 | 5 |
samer@3 | 6 function install_swi { |
samer@3 | 7 cd ~/src |
samer@3 | 8 wget http://www.swi-prolog.org/download/devel/src/pl-7.1.28.tar.gz |
samer@3 | 9 tar xzf pl-7.1.28.tar.gz |
samer@3 | 10 cd pl-7.1.28 |
samer@3 | 11 cp build.templ build |
samer@3 | 12 patch build ~/etc/swipl-build.patch |
samer@3 | 13 ./build |
samer@3 | 14 } |
samer@3 | 15 |
samer@0 | 16 |
samer@0 | 17 #build SWI Prolog |
samer@3 | 18 install_swi |
samer@0 | 19 |
samer@0 | 20 # DOWNLOADS FROM REPOs |
samer@0 | 21 cd ~/src/github |
samer@3 | 22 git clone https://samer--/ClioPatria |
samer@0 | 23 git clone --recursive https://github.com/humdrum-tools/humdrum-tools |
samer@0 | 24 |
samer@0 | 25 cd ~/src/hg |
samer@3 | 26 hg clone https://code.soundsoftware.ac.uk/hg/dml-cliopatria |
samer@3 | 27 hg clone https://code.soundsoftware.ac.uk/hg/ishara |
samer@3 | 28 hg clone https://code.soundsoftware.ac.uk/hg/kernscores-utf8 |
samer@0 | 29 |
samer@3 | 30 ln -s ~/src/hg/kernscores-utf8 ~/lib/kern |
samer@0 | 31 |
samer@3 | 32 |