From 106f47f645ccb8a0b6eb8e37f76c17e8aa39b67d Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 13 Mar 2021 15:28:19 +0100 Subject: Move all plugins into bundle. As suggested by @dromer@github.com, this moves all Airwindows plugins into a separate bundle. This cleans up the lv2 directory quite a bit. --- plugins/LV2/CMakeLists.txt | 2 + plugins/LV2/Helpers.cmake | 3 +- plugins/LV2/manifest.ttl.in | 117 ++++++++++++++++++++++ plugins/LV2/src/ADClip7/manifest.ttl.in | 12 --- plugins/LV2/src/ADT/manifest.ttl.in | 12 --- plugins/LV2/src/AQuickVoiceClip/manifest.ttl.in | 12 --- plugins/LV2/src/Acceleration/manifest.ttl.in | 12 --- plugins/LV2/src/Air/manifest.ttl.in | 12 --- plugins/LV2/src/Apicolypse/manifest.ttl.in | 12 --- plugins/LV2/src/AtmosphereBuss/manifest.ttl.in | 12 --- plugins/LV2/src/AtmosphereChannel/manifest.ttl.in | 12 --- plugins/LV2/src/Aura/manifest.ttl.in | 12 --- plugins/LV2/src/AverMatrix/manifest.ttl.in | 12 --- plugins/LV2/src/Average/manifest.ttl.in | 12 --- plugins/LV2/src/BassDrive/manifest.ttl.in | 12 --- plugins/LV2/src/BassKit/manifest.ttl.in | 12 --- 16 files changed, 120 insertions(+), 158 deletions(-) create mode 100644 plugins/LV2/manifest.ttl.in delete mode 100644 plugins/LV2/src/ADClip7/manifest.ttl.in delete mode 100644 plugins/LV2/src/ADT/manifest.ttl.in delete mode 100644 plugins/LV2/src/AQuickVoiceClip/manifest.ttl.in delete mode 100644 plugins/LV2/src/Acceleration/manifest.ttl.in delete mode 100644 plugins/LV2/src/Air/manifest.ttl.in delete mode 100644 plugins/LV2/src/Apicolypse/manifest.ttl.in delete mode 100644 plugins/LV2/src/AtmosphereBuss/manifest.ttl.in delete mode 100644 plugins/LV2/src/AtmosphereChannel/manifest.ttl.in delete mode 100644 plugins/LV2/src/Aura/manifest.ttl.in delete mode 100644 plugins/LV2/src/AverMatrix/manifest.ttl.in delete mode 100644 plugins/LV2/src/Average/manifest.ttl.in delete mode 100644 plugins/LV2/src/BassDrive/manifest.ttl.in delete mode 100644 plugins/LV2/src/BassKit/manifest.ttl.in diff --git a/plugins/LV2/CMakeLists.txt b/plugins/LV2/CMakeLists.txt index cfc15da..577a974 100755 --- a/plugins/LV2/CMakeLists.txt +++ b/plugins/LV2/CMakeLists.txt @@ -5,6 +5,8 @@ set(CMAKE_CXX_STANDARD 14) add_compile_options(-Wall -Werror -Wno-unused-value) add_compile_options(-Wno-unused-but-set-variable) # AQuickVoiceClip +configure_file(manifest.ttl.in airwindows.lv2/manifest.ttl @ONLY) + include(Helpers.cmake) include_directories(include) diff --git a/plugins/LV2/Helpers.cmake b/plugins/LV2/Helpers.cmake index c3ec543..04cc8ee 100755 --- a/plugins/LV2/Helpers.cmake +++ b/plugins/LV2/Helpers.cmake @@ -5,11 +5,10 @@ function(add_airwindows_plugin name) add_library(${name} MODULE ${plug_src}) - set(TARGET_DIR ${CMAKE_CURRENT_BINARY_DIR}/lv2/${name}) + set(TARGET_DIR ${CMAKE_CURRENT_BINARY_DIR}/airwindows.lv2/) set_target_properties(${name} PROPERTIES PREFIX "" LIBRARY_OUTPUT_DIRECTORY ${TARGET_DIR}) - configure_file(src/${name}/manifest.ttl.in ${TARGET_DIR}/manifest.ttl @ONLY) configure_file(src/${name}/${name}.ttl ${TARGET_DIR}/${name}.ttl COPYONLY) endfunction(add_airwindows_plugin) diff --git a/plugins/LV2/manifest.ttl.in b/plugins/LV2/manifest.ttl.in new file mode 100644 index 0000000..49d7406 --- /dev/null +++ b/plugins/LV2/manifest.ttl.in @@ -0,0 +1,117 @@ +@prefix airwindows: . +@prefix doap: . +@prefix foaf: . +@prefix lv2: . +@prefix rdfs: . + + + a foaf:Person ; + foaf:name "Harald Eilertsen" ; + foaf:mbox ; + rdfs:seeAlso . + + +airwindows: + a doap:Project ; + lv2:symbol "airwindows" ; + doap:name "Airwindows LV2" ; + doap:shortdesc "An LV2 port of the Airwindows plugins." ; + doap:homepage ; + doap:license ; + doap:maintainer ; + doap:developer [ + a foaf:Person ; + foaf:name "Chris Johnson" ; + foaf:mbox + ] . + +airwindows:acceleration + a lv2:Plugin ; + doap:name "Airwindows Acceleration Limiter" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:adclip_7 + a lv2:Plugin ; + doap:name "Airwindows ADClip7 Loudness Maximizer" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:adt + a lv2:Plugin ; + doap:name "Airwindows Adjustable Delay Taps" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:air + a lv2:Plugin ; + doap:name "Airwindows Air" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:apicolypse + a lv2:Plugin ; + doap:name "Airwindows Apicolypse" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:aquickvoiceclip + a lv2:Plugin ; + doap:name "Airwindows AQuickVoiceClip" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:atmospherebuss + a lv2:Plugin ; + doap:name "Airwindows AtmosphereBuss" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:atmospherechannel + a lv2:Plugin ; + doap:name "Airwindows AtmosphereChannel" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:aura + a lv2:Plugin ; + doap:name "Airwindows Aura" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:average + a lv2:Plugin ; + doap:name "Airwindows Average" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:avermatrix + a lv2:Plugin ; + doap:name "Airwindows AverMatrix" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:bassdrive + a lv2:Plugin ; + doap:name "Airwindows BassDrive" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . + +airwindows:basskit + a lv2:Plugin ; + doap:name "Airwindows BassKit" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . diff --git a/plugins/LV2/src/ADClip7/manifest.ttl.in b/plugins/LV2/src/ADClip7/manifest.ttl.in deleted file mode 100644 index bda5816..0000000 --- a/plugins/LV2/src/ADClip7/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for airwindows ADClip7 plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows ADClip7 Loudness Maximizer" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/ADT/manifest.ttl.in b/plugins/LV2/src/ADT/manifest.ttl.in deleted file mode 100644 index 9f2b511..0000000 --- a/plugins/LV2/src/ADT/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for airwindows ADT plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows Adjustable Delay Taps" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/AQuickVoiceClip/manifest.ttl.in b/plugins/LV2/src/AQuickVoiceClip/manifest.ttl.in deleted file mode 100644 index 171f0d8..0000000 --- a/plugins/LV2/src/AQuickVoiceClip/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for airwindows AQuickVoiceClip plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows AQuickVoiceClip" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/Acceleration/manifest.ttl.in b/plugins/LV2/src/Acceleration/manifest.ttl.in deleted file mode 100644 index 6f00bd4..0000000 --- a/plugins/LV2/src/Acceleration/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for airwindows Acceleration limiter plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows Acceleration Limiter" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/Air/manifest.ttl.in b/plugins/LV2/src/Air/manifest.ttl.in deleted file mode 100644 index 9bcf114..0000000 --- a/plugins/LV2/src/Air/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for airwindows Air plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows Air" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/Apicolypse/manifest.ttl.in b/plugins/LV2/src/Apicolypse/manifest.ttl.in deleted file mode 100644 index 3ea8d73..0000000 --- a/plugins/LV2/src/Apicolypse/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for airwindows Apicolypse plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows Apicolypse" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/AtmosphereBuss/manifest.ttl.in b/plugins/LV2/src/AtmosphereBuss/manifest.ttl.in deleted file mode 100644 index f8b7755..0000000 --- a/plugins/LV2/src/AtmosphereBuss/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for Airwindows AtmosphereBuss plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows AtmosphereBuss" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/AtmosphereChannel/manifest.ttl.in b/plugins/LV2/src/AtmosphereChannel/manifest.ttl.in deleted file mode 100644 index 7a617e9..0000000 --- a/plugins/LV2/src/AtmosphereChannel/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for Airwindows AtmosphereChannel plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows AtmosphereChannel" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/Aura/manifest.ttl.in b/plugins/LV2/src/Aura/manifest.ttl.in deleted file mode 100644 index 66612e7..0000000 --- a/plugins/LV2/src/Aura/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for Airwindows Aura plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows Aura" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/AverMatrix/manifest.ttl.in b/plugins/LV2/src/AverMatrix/manifest.ttl.in deleted file mode 100644 index c3710cb..0000000 --- a/plugins/LV2/src/AverMatrix/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for Airwindows AverMatrix plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows AverMatrix" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/Average/manifest.ttl.in b/plugins/LV2/src/Average/manifest.ttl.in deleted file mode 100644 index 86d2e8b..0000000 --- a/plugins/LV2/src/Average/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for Airwindows Average plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows Average" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/BassDrive/manifest.ttl.in b/plugins/LV2/src/BassDrive/manifest.ttl.in deleted file mode 100644 index 9a2feeb..0000000 --- a/plugins/LV2/src/BassDrive/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for Airwindows BassDrive plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows BassDrive" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . diff --git a/plugins/LV2/src/BassKit/manifest.ttl.in b/plugins/LV2/src/BassKit/manifest.ttl.in deleted file mode 100644 index 752eef7..0000000 --- a/plugins/LV2/src/BassKit/manifest.ttl.in +++ /dev/null @@ -1,12 +0,0 @@ -# LV2 Plugin manifest for Airwindows BassKit plugin - -@prefix doap: . -@prefix lv2: . -@prefix rdfs: . - - - a lv2:Plugin ; - doap:name "Airwindows BassKit" ; - doap:license ; - lv2:binary ; - rdfs:seeAlso . -- cgit v1.2.3