summaryrefslogtreecommitdiff
path: root/tools/linux_packaging/build
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-01-28 23:08:06 +0100
committerRobin Gareus <robin@gareus.org>2015-01-28 23:08:06 +0100
commitbc3f606e16280855790ebfb4e60b827ba290766e (patch)
tree10419c5070cb376d836670d4c2ad1bc19add299b /tools/linux_packaging/build
parent9f93df03137616cadadbd7ec1187fe183016536b (diff)
add lv2core to bundles
The ontology is needed for plugin classification.
Diffstat (limited to 'tools/linux_packaging/build')
-rwxr-xr-xtools/linux_packaging/build7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 33baf12ac7..6a57f1059a 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -566,6 +566,13 @@ fi
# install bundled LV2s to <app>/lib/LV2/
cp -R $BUILD_ROOT/libs/LV2 $APPLIB/
+# lv2 core, classifications etc - TODO check if we need the complete LV2 ontology
+if test -d $ARDOURSTACK_ROOT/lib/lv2/lv2core.lv2 ; then
+ cp -R $ARDOURSTACK_ROOT/lib/lv2/lv2core.lv2 $APPLIB/LV2/
+elif test -d $GTKSTACK_ROOT/lib/lv2/lv2core.lv2 ; then
+ cp -R $GTKSTACK_ROOT/lib/lv2/lv2core.lv2 $APPLIB/LV2/
+fi
+
# go through and recursively remove any .svn dirs in the bundle
for svndir in `find $APPDIR -name .svn -type d`; do
rm -rf $svndir