Browse Source

Update airwindows-lv2

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 2 years ago
parent
commit
4e6e636b31
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 683 additions and 423 deletions
  1. +6
    -0
      sources/plugins/airwindows-lv2/debian/changelog
  2. +676
    -400
      sources/plugins/airwindows-lv2/debian/patches/01_optimizations.patch
  3. +0
    -21
      sources/plugins/airwindows-lv2/debian/patches/02_9cced339c34db7213cfb81c5c13a1b963fb9db75.patch
  4. +0
    -1
      sources/plugins/airwindows-lv2/debian/patches/series
  5. +1
    -1
      sources/plugins/airwindows-lv2/debian/rules

+ 6
- 0
sources/plugins/airwindows-lv2/debian/changelog View File

@@ -1,3 +1,9 @@
airwindows-lv2 (6:3.0-1kxstudio1) focal; urgency=medium

* Update

-- falkTX <falktx@falktx.com> Fri, 13 May 2022 16:07:07 +0100

airwindows-lv2 (6:1.0-1kxstudio2) focal; urgency=medium

* Initial package


+ 676
- 400
sources/plugins/airwindows-lv2/debian/patches/01_optimizations.patch
File diff suppressed because it is too large
View File


+ 0
- 21
sources/plugins/airwindows-lv2/debian/patches/02_9cced339c34db7213cfb81c5c13a1b963fb9db75.patch View File

@@ -1,21 +0,0 @@
From 9cced339c34db7213cfb81c5c13a1b963fb9db75 Mon Sep 17 00:00:00 2001
From: Fabio Pesari <fpesari@tuxfamily.org>
Date: Fri, 22 Apr 2022 14:14:05 +0200
Subject: [PATCH] Added -lm to plugins

---
CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9636c5e..f0ad4e1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -28,6 +28,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Airwindows.lv2)
function(add_plugin PLUGIN_NAME)
add_library(${PLUGIN_NAME} SHARED src/${PLUGIN_NAME}/${PLUGIN_NAME}.c)
target_include_directories(${PLUGIN_NAME} PRIVATE ${LV2_INCLUDE_DIRS})
+ target_link_libraries(${PLUGIN_NAME} m)
set_target_properties(${PLUGIN_NAME} PROPERTIES PREFIX "")
if(MSVC)

+ 0
- 1
sources/plugins/airwindows-lv2/debian/patches/series View File

@@ -1,2 +1 @@
01_optimizations.patch
02_9cced339c34db7213cfb81c5c13a1b963fb9db75.patch

+ 1
- 1
sources/plugins/airwindows-lv2/debian/rules View File

@@ -3,7 +3,7 @@
include /usr/share/dpkg/kxstudio-audio-plugin.mk

override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_INSTALL_PREFIX=/usr/lib/lv2 -DCMAKE_BUILD_TYPE=Release
dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib

override_dh_auto_install:
dh_auto_install


Loading…
Cancel
Save