Skip to content

Commit

Permalink
new way of downloading and installing lilypond added
Browse files Browse the repository at this point in the history
  • Loading branch information
anneferger committed Dec 20, 2023
1 parent 3f69b28 commit f71d152
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions required.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
#!/bin/bash
# installs lilypond into /usr/local/lilypond and /usr/local/bin as shortcut
curl -o /tmp/lilypond.sh https://lilypond.org/download/binaries/linux-64/lilypond-2.20.0-1.linux-64.sh
chmod a+x /tmp/lilypond.sh && /tmp/lilypond.sh --batch
# installs lilypond into ~/lilypond/usr
curl -L -o /tmp/lilypond.tar.gz https://gitlab.com/lilypond/lilypond/-/releases/v2.25.11/downloads/lilypond-2.25.11-linux-x86_64.tar.gz

#https://gitlab.com/lilypond/lilypond/-/releases/permalink/latest
#https://gitlab.com/lilypond/lilypond/-/releases/v2.25.11/downloads/lilypond-2.25.11-linux-x86_64.tar.gz

mkdir -p ~/lilypond/usr
mkdir -p /tmp/lilypond
tar -xf /tmp/lilypond.tar.gz -C /tmp/lilypond
mv /tmp/lilypond/*/* ~/lilypond/usr

0 comments on commit f71d152

Please sign in to comment.