prov/commit

rename package to prov

authorJacco van Ossenbruggen
Wed Jan 23 15:46:45 2013 +0100
committerJacco van Ossenbruggen
Wed Jan 23 15:46:45 2013 +0100
commit9e9f40459a2eeabfea0dc90aba3ebc6b635c854f
tree44ff05717c014387f6b10d6890e35d943e8a435b
parent28e3e985b0a3d4abc6a06698e6988d9047ffac97
Diff style: patch stat
diff --git a/rdf/cpack/prov.ttl b/rdf/cpack/prov.ttl
new file mode 100644
index 0000000..059ce87
--- /dev/null
+++ b/rdf/cpack/prov.ttl
@@ -0,0 +1,30 @@
+@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
+@prefix cpack:   <http://cliopatria.swi-prolog.org/schema/cpack#> .
+
+# This file is a Turtle-format RDF file that describes the package.  It
+# *must* be located in rdf/cpack/opmv.ttl
+#
+# Author is a FOAF Person. If you have a FOAF profile, you can link to
+# this.  Otherwise you can specify the information inline as done below.
+# See http://xmlns.com/foaf/spec/ for defines fields.
+
+<> a cpack:Package ;
+	cpack:packageName "prov" ;
+	dcterms:title "Schema supporting the W3C PROV vocabulary";
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jacco van Ossenbruggen";
+		       foaf:mbox "Jacco.van.Ossenbruggen@cwi.nl" ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/jrvosse/lib/git/prov>
+	    ] ;
+	cpack:description
+
+"""PROV-O Schema/ontology
+""" .
+
+