Skip to content

Commit b59a712

Browse files
committed
Fix linux build, set author, fix duplicate plugin IDs
1 parent 4466905 commit b59a712

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145

146146
- name: Install Dependencies (zypper)
147147
if: ${{ matrix.pacman == 'zypper' }}
148-
run: zypper refresh && zypper install -y git rsync wget bzip2 xz tar cmake alsa-devel libXinerama-devel libXi-devel libcurl-devel libXcomposite-devel freeglut-devel libXrandr-devel libXcursor-devel freetype2-devel gcc gcc-c++ curl ccache python3 libjack-devel gawk unzip ninja-build
148+
run: zypper refresh && zypper install -y git rsync wget bzip2 xz tar cmake alsa-devel libXinerama-devel libXi-devel libcurl-devel libXcomposite-devel freeglut-devel libXrandr-devel libXcursor-devel freetype2-devel gcc gcc-c++ curl ccache python3 libjack-devel gawk unzip ninja
149149

150150
- name: Install Dependencies (pacman)
151151
if: ${{ matrix.pacman == 'pacman' }}

build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
build_dir = builds_parent_dir / f"Build-{name}"
5252
print(f"\nProcessing: {name}")
5353

54+
author = plugin.get("author", False)
5455
enable_gem = plugin.get("enable_gem", False)
5556
enable_sfizz = plugin.get("enable_sfizz", False)
5657
enable_ffmpeg = plugin.get("enable_ffmpeg", False)
@@ -61,6 +62,7 @@
6162
f"-B{build_dir}",
6263
f"-DCUSTOM_PLUGIN_NAME={name}",
6364
f"-DCUSTOM_PLUGIN_PATH={zip_path}",
65+
f"-DCUSTOM_PLUGIN_COMPANY={author}",
6466
"-DCMAKE_BUILD_TYPE=Release",
6567
f"-DENABLE_GEM={'1' if enable_gem else '0'}",
6668
f"-DENABLE_SFIZZ={'1' if enable_sfizz else '0'}",

config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
{
33
"name": "N-TILT",
4+
"author": "Nasko",
45
"path": "Plugins/N-TILT.zip",
56
"formats": ["VST3", "AU", "LV2"],
67
"type": "fx",

plugdata

0 commit comments

Comments
 (0)