skeleton & stubs

This commit is contained in:
2026-04-19 02:13:56 +03:00
parent e3f641d646
commit 4f14980610
13 changed files with 468 additions and 609 deletions

View File

@@ -0,0 +1,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://git.yokai.digital/deadYokai/tenko>
a lv2:Plugin ;
lv2:binary <libtenko_lv2.so> ;
rdfs:seeAlso <tenko.ttl> .

View File

@@ -0,0 +1,21 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://git.yokai.digital/deadYokai/tenko>
a lv2:Plugin, lv2:InstrumentPlugin ;
doap:name "Tenko" ;
doap:license <https://spdx.org/licenses/MIT> ;
lv2:port [
a lv2:OutputPort, lv2:AudioPort ;
lv2:index 0 ;
lv2:symbol "out_l" ;
rdfs:label "Left Out"
] , [
a lv2:OutputPort, lv2:AudioPort ;
lv2:index 1 ;
lv2:symbol "out_r" ;
rdfs:label "Right Out"
] .