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
#!/usr/bin/env bash | |
# Install mit-scheme for arm64 | |
wget http://inst.eecs.berkeley.edu/~scheme/precompiled/Linux/STk-4.0.1-ucb1.3.6.i386.rpm | |
sudo apt-get install alien | |
fakeroot alien --target=amd64 STk-4.0.1-ucb1.3.6.i386.rpm | |
dpkg -i stk_4.0.1-1_amd64.deb | |
sudo dpkg --add-architecture i386 | |
sudo apt-get install gcc-multilib | |
sudo apt-get install libsm6:i386 libx11-6:i386 |