16
17
18
19
20
21
22
23
24
25
26
27
28
|
Get chicken:
wget https://code.call-cc.org/releases/5.3.0/chicken-5.3.0.tar.gz
Extract, build, and install chicken:
tar xf chicken-5.3.0.tar.gz; cd chicken; make PLATFORM=linux PREFIX=$PREFIX install; cd ..
Install all needed eggs.
for egg in $(cat ../ck5-egg.list);do echo $egg;ck5 chicken-install $egg;done
Now run the script ../iup-compile.sh for remaining instructions
|
|
|
16
17
18
19
20
21
22
23
24
25
26
27
28
|
Get chicken:
wget https://code.call-cc.org/releases/5.3.0/chicken-5.3.0.tar.gz
Extract, build, and install chicken:
tar xf chicken-5.3.0.tar.gz; cd chicken-5.3.0; make PLATFORM=linux PREFIX=$PREFIX install; cd ..
Install all needed eggs.
for egg in $(cat ../ck5-egg.list);do echo $egg;ck5 chicken-install $egg;done
Now run the script ../iup-compile.sh for remaining instructions
|