1
2########## http://polyeffects.com/lv2/harm_trem ##########
3
4@prefix doap: <http://usefulinc.com/ns/doap#> .
5@prefix foaf: <http://xmlns.com/foaf/0.1/> .
6@prefix lv2:  <http://lv2plug.in/ns/lv2core#> .
7@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8
9<http://polyeffects.com/lv2/harm_trem>
10    a lv2:Plugin ;
11    lv2:binary <harm_trem.so> ;
12    rdfs:seeAlso <harm_trem.ttl> .
13
14# Here's how you can declare the category of the plugin. (For instruments,
15# the lv2:InstrumentPlugin type will be added automatically.) See
16# http://lv2plug.in/ns/lv2core/ for a list of known plugin classes.
17
18# <http://polyeffects.com/lv2/harm_trem> a lv2:FilterPlugin .
19
20# You might also want to set the license and author information below.
21# NOTE: This isn't normally necessary if you declared the corresponding
22# information as metadata in the Faust source of the plugin. The standard
23# author, license and description fields in the Faust source are automagically
24# included in the generated LV2 manifest.
25
26# <http://polyeffects.com/lv2/harm_trem>
27#     doap:license <http://opensource.org/licenses/isc> ;
28#     doap:maintainer [
29#         foaf:name "Your Name Here" ;
30#         foaf:homepage <http://somewhere.org/> ;
31#         foaf:mbox <mailto:your@mail.here> ;
32#     ] .
33