mirror of https://github.com/dcoredump/dexed.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
572 B
22 lines
572 B
######################################
|
|
#
|
|
# dexed
|
|
#
|
|
######################################
|
|
|
|
DEXED_DEPENDENCIES = lvtk
|
|
DEXED_VERSION = 97bac5932d788f62f0501bc4ba1b8b085c8b9b83
|
|
DEXED_BUNDLES = dexed.lv2
|
|
DEXED_SITE = $(call github,dcoredump,dexed,$(DEXED_VERSION))
|
|
DEXED_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) MOD=1
|
|
|
|
define DEXED_BUILD_CMDS
|
|
(cd $(@D)/src && $(DEXED_TARGET_MAKE) -j $(PARALLEL_JOBS))
|
|
endef
|
|
|
|
define DEXED_INSTALL_TARGET_CMDS
|
|
(cd $(@D)/src; cp -R dexed.lv2 $(TARGET_DIR)/usr/lib/lv2)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
|
|
|