A lightweight Bash script to download and install REAPER on Linux, dynamically selecting the correct version and branch for a seamless setup.
This script downloads and installs the specified version of REAPER on a Linux system. It supports versions with or without a period (e.g., 729 or 7.29).
- A Linux-based operating system
wget: The script useswgetto download the tarball.tar: The script usestarto extract the downloaded archive.sudo: To install REAPER system-wide, the script requiressudopermissions.
- Clone this repository or copy the script to your local environment.
- Make the script executable:
chmod +x install-reaper.shRun the script passing the version number of REAPER you want to install. You can provide the version with or without a period:
./install-reaper.sh <REAPER_VERSION>Where <REAPER_VERSION> is the version number of REAPER you want to install.
- Example 1: Installing REAPER version
7.x(e.g.,729):
./install-reaper.sh 729- Example 2: Installing a future REAPER version
10.x(e.g.,1025):
./install-reaper.sh 1025-hor--help: Show usage instructions.
Example:
./install-reaper.sh -h- The script accepts the REAPER version as an argument.
- It automatically determines the major version based on the first one or two digits:
- For versions like
720, it uses7.x. - For versions like
1025, it uses10.x.
- For versions like
- It downloads the requested version from REAPER's website.
- The script installs REAPER on the system in the
/optdirectory and integrates it into the desktop environment. - After installation, the script cleans up any temporary files.
To upgrade or re-install a different version of REAPER, run the script again with a differente version value.
To uninstall, you can use the following command that is included by default in REAPER:
sudo sh /opt/REAPER/uninstall-reaper.shHave a bug or an issue with this template? Open a new issue here on GitHub.
This code in this repository is released under the MIT license, which means you can use it for any purpose, even for commercial projects. In other words, do what you want with it. The only requirement with the MIT License is that the license and copyright notice must be provided with the software.