mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
12 lines
262 B
Bash
Executable file
12 lines
262 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export PATH=/usr/local/bin:$PATH
|
|
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
|
|
|
|
tar xzvf chibi-scheme-@VERSION@.tgz
|
|
cd chibi-scheme-@VERSION@
|
|
make
|
|
make install
|
|
cp tests/r5rs-tests.scm ..
|
|
cd ..
|
|
chibi-scheme r5rs-tests.scm | tee r5rs-tests.out
|