# LV2 Dynamic Manifest Extension # Copyright 2008-2011 Stefano D'Angelo # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. @prefix dman: . @prefix doap: . @prefix foaf: . @prefix lv2: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . a doap:Project , lv2:Specification ; doap:license ; doap:name "LV2 Dynamic Manifest" ; doap:homepage ; doap:created "2009-06-13" ; doap:shortdesc "An LV2-based specification for dynamic data generation." ; doap:programming-language "C" ; doap:release [ doap:revision "1.1" ; doap:created "2011-11-17" ] ; doap:maintainer [ a foaf:Person ; foaf:name "Stefano D'Angelo" ] . dman:DynManifest a rdfs:Class ; rdfs:subClassOf lv2:Resource ; rdfs:label "Dynamic manifest generator" ; rdfs:subClassOf [ a owl:Restriction ; owl:onProperty rdf:type ; owl:hasValue dman:DynManifest ; rdfs:comment "A DynManifest has rdf:type dman:DynManifest." ] , [ a owl:Restriction ; owl:onProperty lv2:binary ; owl:minCardinality 1 ; rdfs:comment """A DynManifest has at least 1 lv2:binary. The binary must be a library with at least the functions described in lv2_dyn_manifest.h implemented. """ ] ; rdfs:comment """ The class which represents a dynamic manifest generator. There MUST NOT be any instances of :DynManifest in the generated manifest. All relative URIs in the generated data MUST be relative to the base path that would be used to parse a normal LV2 manifest (the bundle path). """ .