From 54b7bb74e3fc34ecb828cc1c4d46baffcb7d56ad Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Tue, 6 Dec 2016 13:48:31 +0000 Subject: [PATCH] Changed installation directory. Changed ttl. --- src/Dexed.ttl | 23 ++++++++++++++++++++--- src/Makefile | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/Dexed.ttl b/src/Dexed.ttl index 61f025c..c263c78 100644 --- a/src/Dexed.ttl +++ b/src/Dexed.ttl @@ -8,6 +8,8 @@ @prefix rdfs: . @prefix ui: . @prefix urid: . +@prefix epp: . +@prefix pprops: . a lv2:InstrumentPlugin, lv2:Plugin ; @@ -51,9 +53,11 @@ a lv2:InputPort, lv2:ControlPort ; lv2:index 4 ; lv2:symbol "output" ; - lv2:name "Output" ; + lv2:name "Volume" ; + lv2:portProperty epp:logarithmic ; + lv2:portProperty pprops:logarithmic ; lv2:default 1.000000 ; - lv2:minimum 0.0 ; + lv2:minimum 0.1 ; lv2:maximum 2.0 ; ] , [ @@ -64,7 +68,20 @@ lv2:default 2 ; lv2:minimum 1 ; lv2:maximum 3 ; - lv2:portProperty lv2:integer ; + lv2:portProperty lv2:enumeration, lv2:integer ; + lv2:scalePoint [ + rdf:value 1 ; + rdfs:label "Mark I" ; + rdfs:comment "Engine Mark I" ; + ], [ + rdf:value 2 ; + rdfs:label "OPL" ; + rdfs:comment "Engine OPL" ; + ], [ + rdf:value 3 ; + rdfs:label "MSFA" ; + rdfs:comment "Engine MSFA" ; + ]; ] , [ a lv2:InputPort, lv2:ControlPort ; diff --git a/src/Makefile b/src/Makefile index 96f6096..95742f9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ BUNDLE=dexed.lv2 -INSTALL_DIR=/home/pi/zynthian/zynthian-plugins/mod-lv2 +INSTALL_DIR=/zynthian/zynthian-plugins/lv2 TARGET=dexed.so OBJ=fm_core.o env.o lfo.o dx7note.o sin.o pitchenv.o fm_op_kernel.o freqlut.o exp2.o EngineMkI.o EngineOpl.o PluginFx.o trace.o CFLAGS=-fPIC -DPIC -std=c++11 -I. -I/usr/local/include/lvtk-2 -DLVTK_DEBUG=false