Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pedal pi plugins: Gossiper, Tetr4-switch #168

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 28 additions & 0 deletions plugins/package/pedal-pi-plugins/pedal-pi-plugins.mk
@@ -0,0 +1,28 @@
######################################
#
# Pedal Pi Plugins
#
######################################
PEDAL_PI_PLUGINS_VERSION = f806113

PEDAL_PI_PLUGINS_SITE_METHOD = git
PEDAL_PI_PLUGINS_SITE = https://github.com/SrMouraSilva/plugins-lv2.git
PEDAL_PI_PLUGINS_DEPENDENCIES =
PEDAL_PI_PLUGINS_BUNDLES = gossiper.lv2 tetr4-switch.lv2
PEDAL_PI_PLUGINS_CONF_ENV = DESTDIR="$(TARGET_DIR)"

PEDAL_PI_PLUGINS_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)/plugins

# build command
define PEDAL_PI_PLUGINS_BUILD_CMDS
$(PEDAL_PI_PLUGINS_TARGET_MAKE)
endef

# install command
define PEDAL_PI_PLUGINS_INSTALL_TARGET_CMDS
$(PEDAL_PI_PLUGINS_TARGET_MAKE) install DESTDIR=$(TARGET_DIR)
endef


# import everything else from the buildroot generic package
$(eval $(generic-package))