rdf-mt/commit

Installed template

authorJan Wielemaker
Fri Dec 13 10:07:43 2013 +0100
committerJan Wielemaker
Fri Dec 13 10:07:43 2013 +0100
commit2e09d905094124b23339a4f351ff4d5339797618
tree57e73fbc0b198f7b463ca120e1da2754c6a0e389
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..3ba50e9
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config('rdf-mt', link).
diff --git a/config-available/rdf-mt.pl b/config-available/rdf-mt.pl
new file mode 100644
index 0000000..b1eabe7
--- /dev/null
+++ b/config-available/rdf-mt.pl
@@ -0,0 +1,5 @@
+:- module(conf_rdf-mt, []).
+
+/** <module> RDF Semantics Implementation
+*/
+
diff --git a/rdf/cpack/rdf-mt.ttl b/rdf/cpack/rdf-mt.ttl
new file mode 100644
index 0000000..43dbe28
--- /dev/null
+++ b/rdf/cpack/rdf-mt.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/rdf-mt.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 "rdf-mt" ;
+	dcterms:title "RDF Semantics Implementation" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jan Wielemaker" ;
+		       foaf:mbox <mailto:J.Wielemaker@cs.vu.nl> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/rdf-mt.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use PlDoc markup.
+""" .
+
+