14 lines
429 B
Bash
14 lines
429 B
Bash
#! /bin/bash
|
|
|
|
cd "$(dirname "$BASH_SOURCE")"
|
|
if [ ! -f ./alda ]; then
|
|
curl -L https://github.com/alda-lang/alda/releases/download/1.4.4/alda > ./alda
|
|
elif which nix-env; then
|
|
nix-env -i alda
|
|
fi
|
|
chmod +x ./alda
|
|
|
|
echo "consider https://member.keymusician.com/Member/FluidR3_GM/index.html for quality"
|
|
echo "install via git clone https://github.com/alda-lang/alda && scripts/install-fluidr3"
|
|
echo "installs to $HOME/.gervill"
|