diff options
author | Spacelord <Spacelord09@users.noreply.github.com> | 2019-12-06 22:51:14 +0100 |
---|---|---|
committer | Spacelord <Spacelord09@users.noreply.github.com> | 2019-12-06 22:51:14 +0100 |
commit | 758c0000d1bc9f470d734bec78b8d8b85356acef (patch) | |
tree | 4008f2bbfb6ea9f4567187651cacb6fc822a7aa8 | |
parent | df07cea946efc5bffb43b25855607f2762a70643 (diff) | |
parent | 6eabd8c0b7408a601585e19f707d977da4453cd1 (diff) | |
download | midimonster-758c0000d1bc9f470d734bec78b8d8b85356acef.tar.gz midimonster-758c0000d1bc9f470d734bec78b8d8b85356acef.tar.bz2 midimonster-758c0000d1bc9f470d734bec78b8d8b85356acef.zip |
Merge branch 'master' of github.com:cbdevnet/midimonster into installer
-rw-r--r-- | README.md | 9 | ||||
-rwxr-xr-x[-rw-r--r--] | installer.sh | 1 |
2 files changed, 10 insertions, 0 deletions
@@ -182,6 +182,15 @@ for example ``` make jack.so ``` +#### Buiding with Installer + +For easy installation on Linux, the [installer script](installer.sh) can be used: + +``` +wget https://raw.githubusercontent.com/cbdevnet/midimonster/master/installer.sh ./ +chmod +x ./installer.sh +./installer.sh +``` #### Building for packaging or installation diff --git a/installer.sh b/installer.sh index 6d438a7..eab9f50 100644..100755 --- a/installer.sh +++ b/installer.sh @@ -40,6 +40,7 @@ INSTALL-PREP () { git clone https://github.com/cbdevnet/midimonster.git "$tmp_path" # Gets Midimonster Iversion=(git describe --abbrev=0) # Get last tag(stable version) echo "Starting Git checkout to "$Iversion"" + git init $tmp_path git checkout $Iversion $tmp_path echo "" |