Browse Source

Add VCV-Spectra

pull/514/head
Andrew Belt 6 years ago
parent
commit
62123e21d5
3 changed files with 17 additions and 6 deletions
  1. +14
    -0
      manifests/VCV-Spectra.json
  2. +0
    -6
      scripts/build_plugin.py
  3. +3
    -0
      scripts/build_updates.py

+ 14
- 0
manifests/VCV-Spectra.json View File

@@ -0,0 +1,14 @@
{
"name": "Spectra",
"author": "VCV",
"license": "proprietary",
"pluginUrl": "https://vcvrack.com/Spectra.html",
"authorUrl": "https://vcvrack.com/",
"authorEmail": "contact@vcvrack.com",
"manualUrl": "https://vcvrack.com/Spectra.html#manual",
"repoVersion": "0.6.0",
"productId": "1399370907691",
"latestVersion": "0.6.0",
"buildTimestamp": 1532540586,
"status": "available"
}

+ 0
- 6
scripts/build_plugin.py View File

@@ -19,11 +19,6 @@ def delete_stage():
system(f'rm -rf stage')


def commit_stage():
system('mv -vi stage/* ../downloads/')
delete_stage()


def build_mac(plugin_dir):
env = f'CC=x86_64-apple-darwin15-clang CXX=x86_64-apple-darwin15-clang++-libc++ STRIP=x86_64-apple-darwin15-strip RACK_DIR={RACK_SDK}'
make = f'{env} make -j$(nproc) -C {plugin_dir}'
@@ -60,7 +55,6 @@ def build(plugin_dir):
build_lin(plugin_dir)
build_win(plugin_dir)
build_mac(plugin_dir)
commit_stage()
except Exception as e:
delete_stage()
print(e)


+ 3
- 0
scripts/build_updates.py View File

@@ -33,6 +33,9 @@ for plugin_dir in plugin_dirs:
input()
continue

build_plugin.system('mv -vi stage/* ../downloads/')
build_plugin.delete_stage()

# Update build information
manifest['latestVersion'] = manifest['repoVersion']
manifest['buildTimestamp'] = round(time.time())


Loading…
Cancel
Save