From 094c563bc62020368fa8af4679237ab64da2e566 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 9 Nov 2009 00:24:50 +0000 Subject: Add description file with DOAP and host-info information. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2232 a436a847-0d15-0410-975c-d299462d15a1 --- ingen.ttl | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ingen.ttl diff --git a/ingen.ttl b/ingen.ttl new file mode 100644 index 00000000..7197918b --- /dev/null +++ b/ingen.ttl @@ -0,0 +1,43 @@ +@prefix doap: . +@prefix rdf: . +@prefix rdfs: . +@prefix foaf: . +@prefix hi: . + + a doap:Project, hi:Host ; + doap:name "Ingen" ; + doap:shortdesc "A modular audio processing environment." ; + doap:homepage ; + doap:bug-database ; + doap:license ; + doap:developer [ + a foaf:Person ; + foaf:homepage ; + foaf:mbox_sha1sum "253b3c58086250260bac1232d744d150274ad308" ; + foaf:name "Dave Robillard" + ] ; + doap:programming-language "C", "C++" ; + doap:repository [ + a doap:SVNRepository ; + doap:browse ; + doap:location + ] ; + hi:supportsExtension [ + hi:extension ; + ] , [ + hi:extension ; + ] , [ + hi:extension ; + ] , [ + hi:extension ; + ] ; + doap:description """ +A modular audio processing environment, where most functionality is provided +by generic plugins. Patching of audio, MIDI, and control data is supported. +The engine and UI are completely separated in a network transparent way, making +it possible to run one or more GUIs on separate machines from the engine. + +Ingen is closely based on LV2 plugin technology; Ingen patches are RDF +documents in Turtle in a very similar format to the RDF definition of an +LV2 plugin. +""" . -- cgit v1.2.1