-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstall.sh
executable file
·53 lines (28 loc) · 1.34 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
echo "*** compiling define-library.scm"
gsc define-library.scm
mkdir github.com
mkdir github.com/feeley
cd github.com/feeley
echo "*** cloning https://github.com/feeley/base64.git"
git clone https://github.com/feeley/base64.git
echo "*** cloning https://github.com/feeley/crypto.git"
git clone https://github.com/feeley/crypto.git
echo "*** cloning https://github.com/feeley/digest.git"
git clone https://github.com/feeley/digest.git
echo "*** cloning https://github.com/feeley/homovector.git"
git clone https://github.com/feeley/homovector.git
echo "*** cloning https://github.com/feeley/nonneg-integer.git"
git clone https://github.com/feeley/nonneg-integer.git
echo "*** cloning https://github.com/feeley/random.git"
git clone https://github.com/feeley/random.git
cd ../..
echo "*** compiling libraries"
gsc -e '(load "define-library")' github.com/feeley/base64/base64.sld
gsc -e '(load "define-library")' github.com/feeley/crypto/aes/aes.sld
gsc -e '(load "define-library")' github.com/feeley/crypto/rsa/rsa.sld
gsc -e '(load "define-library")' github.com/feeley/digest/digest.sld
gsc -e '(load "define-library")' github.com/feeley/homovector/homovector.sld
gsc -e '(load "define-library")' github.com/feeley/nonneg-integer/nonneg-integer.sld
gsc -e '(load "define-library")' github.com/feeley/random/random.sld
echo "*** done!"