summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-08-17 00:06:34 +0200
committerRobin Gareus <robin@gareus.org>2015-08-17 00:06:34 +0200
commit2a9dd5d7bbc79b3469d1c57bc6f14e46fcfd1d1a (patch)
treebb873ca9cc80673fa4df44df0a31fc3acfa9c64d /tools
parent4f387f390ef0b9937637904ea894c82739c26900 (diff)
only copy lv2core .ttl (exclude headers) to bundle
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 0915beba3a..b9fa475151 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -566,9 +566,11 @@ 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/
+ mkdir -p $APPLIB/LV2/lv2core.lv2
+ cp -R $ARDOURSTACK_ROOT/lib/lv2/lv2core.lv2/*.ttl $APPLIB/LV2/lv2core.lv2/
elif test -d $GTKSTACK_ROOT/lib/lv2/lv2core.lv2 ; then
- cp -R $GTKSTACK_ROOT/lib/lv2/lv2core.lv2 $APPLIB/LV2/
+ mkdir -p $APPLIB/LV2/lv2core.lv2
+ cp -R $GTKSTACK_ROOT/lib/lv2/lv2core.lv2/*.ttl $APPLIB/LV2/lv2core.lv2/
fi
# go through and recursively remove any .svn dirs in the bundle