Saltar para o conteúdo

DrumGizmo

DrumGizmo

Kits oficiais

Kit Ludwig Black Cortex

#!/bin/bash
set -e
DEPS="gobjc++\
	libexpat1-dev\
	libsndfile1-dev\
	libxext-dev"
source <(curl -sSL https://estudio-debian.pages.dev/functions.lib)
install_deb
script() {
	git clone git://git.drumgizmo.org/drumgizmo --recursive
	cd drumgizmo
	sed -i '1iOBJCXX = g++' dggui/Makefile.am
	./autogen.sh
	#wget -q --show-progress https://web.archive.org/web/20181016150224/https://download.steinberg.net/sdk_downloads/vstsdk3610_11_06_2018_build_37.zip
	wget -q --show-progress https://download.studio.link/tools/vstsdk367_03_03_2017_build_352.zip
	unzip -oqq vstsdk*.zip
	./configure\
		--disable-cli\
		--enable-vst\
		--with-vst-sources="$PWD"/VST_SDK/VST2_SDK
	sed -i '1i#include <cstdint>' plugin/plugingizmo/plugin.h
	make
}
tmprun script
w