Just copy and execute the code, and you get the latest ATS.
Just make sure you already have libgmp3-dev
installed.
Also make sure to setup PATSHOME
environment variable.
Last active
August 29, 2015 13:57
-
-
Save steinwaywhw/9905799 to your computer and use it in GitHub Desktop.
A quick script for installing ATS2. Just make sure you have libgmp installed already.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget -O ats.tgz http://sourceforge.net/projects/ats2-lang/files/latest/download?source=files | |
tar -xvf ats.tgz | |
mv ATS2* ats2 | |
rm ats.tgz | |
cd ats2 | |
./configure | |
make all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment