|
|
|
# Copyright (C) 2004-2010 Lars Luthman
|
|
|
|
# Updated for LVTK by Michael Fisher <mfisher31@gmail.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
|
|
|
|
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
|
|
|
|
@prefix doap: <http://usefulinc.com/ns/doap#>.
|
|
|
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
|
|
|
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
|
|
|
@prefix ll: <http://ll-plugins.nongnu.org/lv2/namespace#>.
|
|
|
|
@prefix pg: <http://ll-plugins.nongnu.org/lv2/ext/portgroups#>.
|
|
|
|
@prefix ev: <http://lv2plug.in/ns/ext/event#>.
|
|
|
|
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
|
|
|
|
@prefix lvtkp: <http://lvtoolkit.org/plugins/> .
|
|
|
|
|
|
|
|
<http://ll-plugins.nongnu.org/lv2/lv2pftci/beep/out> a pg:StereoGroup.
|
|
|
|
|
|
|
|
<http://ll-plugins.nongnu.org/lv2/lv2pftci/beep>
|
|
|
|
a lv2:Plugin, lv2:InstrumentPlugin ;
|
|
|
|
doap:name "Beep" ;
|
|
|
|
lv2:project lvtkp: ;
|
|
|
|
doap:license <http://usefulinc.com/doap/licenses/gpl> ;
|
|
|
|
ui:ui <http://ll-plugins.nongnu.org/lv2/lv2pftci/beep/gui> ;
|
|
|
|
ll:pegName "p" ;
|
|
|
|
|
|
|
|
lv2:port [
|
|
|
|
a atom:AtomPort , lv2:InputPort ;
|
|
|
|
lv2:index 0;
|
|
|
|
lv2:symbol "midi";
|
|
|
|
lv2:name "MIDI";
|
|
|
|
atom:bufferType atom:Sequence ;
|
|
|
|
atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
|
|
|
|
|
|
|
|
] , [
|
|
|
|
a lv2:AudioPort
|
|
|
|
, lv2:OutputPort ;
|
|
|
|
lv2:index 1 ;
|
|
|
|
lv2:symbol "left" ;
|
|
|
|
lv2:name "Left" ;
|
|
|
|
pg:membership [
|
|
|
|
pg:group <http://ll-plugins.nongnu.org/lv2/lv2pftci/beep/out>;
|
|
|
|
pg:role pg:leftChannel;
|
|
|
|
];
|
|
|
|
] , [
|
|
|
|
a lv2:AudioPort ,
|
|
|
|
lv2:OutputPort ;
|
|
|
|
lv2:index 2 ;
|
|
|
|
lv2:symbol "right" ;
|
|
|
|
lv2:name "Right" ;
|
|
|
|
pg:membership [
|
|
|
|
pg:group <http://ll-plugins.nongnu.org/lv2/lv2pftci/beep/out> ;
|
|
|
|
pg:role pg:rightChannel ;
|
|
|
|
] ;
|
|
|
|
] .
|