summaryrefslogtreecommitdiff
path: root/install-roswell.sh
blob: 40f6daa509bf3ccd39052ccdd39a8a248fc3bc9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env sh
#
# Dependencies:
#  - libcurl (both v3 and v4 should work) : used for downloading the lisp implimentation binaries etc.
#  - automake (required when building from the source)
#  - developmental headers of libcurl (required when building from the source)

set -e
set -x

[ -d ~/cache ] && mkdir -p ~/cache
git clone -b release https://github.com/snmsts/roswell.git ~/cache/roswell
cd ~/cache/roswell
sh bootstrap
./configure
make
sudo make install