commit b19605862e78f300bbc87436a498fbe225fb0481 parent 33e708984a75886f97872e27ac0e6942ddfb5f52 Author: Keith Bloemer <[email protected]> Date: Wed, 2 Feb 2022 17:10:19 -0600 Merge pull request #25 from GuitarML/develop Create build_deb.sh Diffstat:
A | installers/linux/build_deb.sh | | | 43 | +++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 43 insertions(+), 0 deletions(-)
diff --git a/installers/linux/build_deb.sh b/installers/linux/build_deb.sh @@ -0,0 +1,43 @@ +#!/bin/bash +# This script builds a .deb package for installing the Standalone, VST3, and LV2 plugins on Linux + +# Set the app name and version here +app_name=NeuralPi +version=1.3 + + +# 1. Create the package directory structure and control file + +mkdir -p $app_name"/DEBIAN" + +printf "Package: $app_name\n\ +Version: $version\n\ +Section: custom\n\ +Priority: optional\n\ +Architecture: all\n\ +Essential: no\n\ +Installed-Size: 16480128\n\ +Maintainer: GuitarML\n\ +Description: GuitarML Plugin Debian Package\n" > $app_name"/DEBIAN/control" + + +# 2. Copy Standalone, VST3, and LV2 plugins to the package directory (assumes project is already built) + +mkdir -p $app_name/opt/GuitarML/ +echo "Copying ../../build/"$app_name"_artefacts/Standalone/"$app_name +cp "../../build/"$app_name"_artefacts/Standalone/"$app_name $app_name"/opt/GuitarML/" + +mkdir -p $app_name/usr/local/lib/vst3/ +echo "Copying ../../build/"$app_name"_artefacts/VST3/"$app_name".vst3" +cp -r "../../build/"$app_name"_artefacts/VST3/"$app_name".vst3" $app_name"/usr/local/lib/vst3/" + +mkdir -p $app_name/usr/local/lib/lv2/ +echo "Copying ../../build/"$app_name"_artefacts/LV2/"$app_name".lv2" +cp -r "../../build/"$app_name"_artefacts/LV2/"$app_name".lv2" $app_name"/usr/local/lib/lv2/" + + +# 3. Build the .deb package and rename + +dpkg-deb --build $app_name + +mv $app_name.deb $app_name-Linux-x64-$version.deb