# Copyright (C) 2004-2010 Lars Luthman # Updated for LVTK by Michael Fisher # # 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: . @prefix atom: . @prefix doap: . @prefix rdf: . @prefix rdfs: . @prefix ll: . @prefix pg: . @prefix ev: . @prefix ui: . @prefix lvtkp: . a pg:StereoGroup. a lv2:Plugin, lv2:InstrumentPlugin ; doap:name "Beep" ; lv2:project lvtkp: ; doap:license ; ui:ui ; 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 ; ] , [ a lv2:AudioPort , lv2:OutputPort ; lv2:index 1 ; lv2:symbol "left" ; lv2:name "Left" ; pg:membership [ pg:group ; pg:role pg:leftChannel; ]; ] , [ a lv2:AudioPort , lv2:OutputPort ; lv2:index 2 ; lv2:symbol "right" ; lv2:name "Right" ; pg:membership [ pg:group ; pg:role pg:rightChannel ; ] ; ] .