Skip to content

Commit

Permalink
Add more plugins, fix linux env
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Oct 29, 2023
1 parent 07d9eba commit 29487b6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,13 @@ PLUGINS = abgate
PLUGINS += aidadsp-lv2
PLUGINS += artyfx
PLUGINS += carla-plugins
PLUGINS += die-plugins
PLUGINS += dpf-plugins
PLUGINS += dragonfly-reverb
PLUGINS += fluidplug
PLUGINS += fomp
PLUGINS += mod-convolution-loader
PLUGINS += mod-distortion
PLUGINS += mod-mda-lv2
PLUGINS += mod-utilities
PLUGINS += modmeter
Expand All @@ -173,11 +175,24 @@ PLUGINS += neural-amp-modeler-lv2
PLUGINS += neuralrecord
PLUGINS += notes-lv2
PLUGINS += shiro-plugins
PLUGINS += tap-lv2
PLUGINS += wolf-shaper
PLUGINS += x42-fat1
PLUGINS += x42-fil4
PLUGINS += x42-midifilter
PLUGINS += x42-midigen
PLUGINS += x42-stepseq
PLUGINS += x42-tinygain
PLUGINS += x42-xfade

# conflict with lv2-dev
# PLUGINS += lv2-examples

# hardcoded *.so
# PLUGINS += mod-audio-mixers

# needs armadillo
# PLUGINS += mod-pitchshifter

# include plugin projects for version and bundle list
include $(foreach PLUGIN,$(PLUGINS),mod-plugin-builder/plugins/package/$(PLUGIN)/$(PLUGIN).mk)
Expand All @@ -194,6 +209,10 @@ UNWANTED_BUNDLES += mod-toggleswitch4.lv2
UNWANTED_BUNDLES += switchbox_1-2_st.lv2
UNWANTED_BUNDLES += switchbox_2-1_st.lv2
UNWANTED_BUNDLES += switchbox_2-1.lv2
UNWANTED_BUNDLES += tap-autopan.lv2
UNWANTED_BUNDLES += tap-eqbw.lv2
UNWANTED_BUNDLES += tap-eq.lv2
UNWANTED_BUNDLES += tap-sigmoid.lv2

# list of known good bundles
BUNDLES = $(filter-out $(UNWANTED_BUNDLES),$(foreach PLUGIN,$(PLUGINS),$($(call BUILDROOT_VAR,$(PLUGIN))_BUNDLES)))
Expand Down
2 changes: 1 addition & 1 deletion mod-plugin-builder
2 changes: 1 addition & 1 deletion mod-ui
5 changes: 5 additions & 0 deletions utils/plugin-builder/plugin-builder.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ $(PKG)_PKGDIR = $(CURDIR)/mod-plugin-builder/plugins/package/$(pkgname)

RENAME_EXTENSION = $(foreach f,$(2)$(3)$(4)$(5)$(6)$(7)$(8)$(9)$(10)$(11)$(12)$(13)$(14)$(15)$(16)$(17)$(18)$(19),mv $(f) $(subst .so,.$(1),$(f));) echo

BR2_PAWPAW = y
BR2_SKIP_LTO = y
BR2_TARGET_OPTIMIZATION =

Expand All @@ -74,6 +75,10 @@ TARGET_LDFLAGS = $(LDFLAGS)

TARGET_DIR = $(PAWPAW_PREFIX)

ifneq ($(MACOS)$(WINDOWS),true)
TARGET_MAKE_ENV = env LD_LIBRARY_PATH="$(PAWPAW_PREFIX)/usr/lib"
endif

ifeq ($(MACOS),true)
STRIP = true
endif
Expand Down

0 comments on commit 29487b6

Please sign in to comment.