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

Update setbfree to 0.8.10 #64

Open
wants to merge 1 commit 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions plugins/package/setbfree/setbfree.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,22 @@
#
######################################

SETBFREE_VERSION = 30f1ec6267afb0ee17b472db0c4826d5bd96fad8
SETBFREE_VERSION = 8535a15bfe9832f50f5da53039c1af01cacfb992
SETBFREE_SITE = $(call github,pantherb,setBfree,$(SETBFREE_VERSION))
SETBFREE_DEPENDENCIES = fftw-single libsndfile zita-convolver
SETBFREE_BUNDLES = b_overdrive b_reverb b_synth b_whirl b_whirl_xt

SETBFREE_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) MOD_BUILD=1 OPTIMIZATIONS= PREFIX=/usr -C $(@D)

define SETBFREE_BUILD_CMDS
$(SETBFREE_TARGET_MAKE)
$(SETBFREE_TARGET_MAKE) MOD=True
endef

define SETBFREE_INSTALL_TARGET_CMDS
$(SETBFREE_TARGET_MAKE) install DESTDIR=$(TARGET_DIR)
cp -rL $($(PKG)_PKGDIR)/b_overdrive/* $(TARGET_DIR)/usr/lib/lv2/b_overdrive/
cp -rL $($(PKG)_PKGDIR)/b_reverb/* $(TARGET_DIR)/usr/lib/lv2/b_reverb/
cp -rL $($(PKG)_PKGDIR)/b_synth/* $(TARGET_DIR)/usr/lib/lv2/b_synth/

$(SETBFREE_TARGET_MAKE) install DESTDIR=$(TARGET_DIR) MOD=True

# b_whirl has been manually splitted into separate bundles
mv $(TARGET_DIR)/usr/lib/lv2/b_whirl/b_whirl.so $(TARGET_DIR)/usr/lib/lv2/b_whirl.so
rm -rf $(TARGET_DIR)/usr/lib/lv2/b_whirl/
cp -rL $($(PKG)_PKGDIR)/b_whirl $(TARGET_DIR)/usr/lib/lv2/
cp -rL $($(PKG)_PKGDIR)/b_whirl_xt $(TARGET_DIR)/usr/lib/lv2/
cp $(TARGET_DIR)/usr/lib/lv2/b_whirl.so $(TARGET_DIR)/usr/lib/lv2/b_whirl/
cp $(TARGET_DIR)/usr/lib/lv2/b_whirl.so $(TARGET_DIR)/usr/lib/lv2/b_whirl_xt/
Expand Down