accurator/commit

Installed template

authorChris Dijkshoorn
Sun Jan 11 08:40:34 2015 +0100
committerChris Dijkshoorn
Sun Jan 11 08:40:34 2015 +0100
commit5dd841b96abaa7f52232f095b03a8d951c4f69db
tree31ce3a6b069a0e44236b2de45d97860bcae7c016
parent
Diff style: patch stat
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..89fe6f9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# [ClioPatria](http://cliopatria.swi-prolog.org) cpack accurator -- Accurator annotatoin system.
+
+Package description goes here.  You can use markdown.
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..9910c75
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(accurator, link).
diff --git a/config-available/accurator.pl b/config-available/accurator.pl
new file mode 100644
index 0000000..cb5ac2a
--- /dev/null
+++ b/config-available/accurator.pl
@@ -0,0 +1,5 @@
+:- module(conf_accurator, []).
+
+/** <module> Accurator annotatoin system.
+*/
+
diff --git a/rdf/cpack/accurator.ttl b/rdf/cpack/accurator.ttl
new file mode 100644
index 0000000..293d327
--- /dev/null
+++ b/rdf/cpack/accurator.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/accurator.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 "accurator" ;
+	dcterms:title "Accurator annotatoin system." ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Chris Dijkshoorn" ;
+		       foaf:mbox <literal(c.r.dijkshoorn@vu.nl)> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <https://github.com//rasvaan/accurator.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use markdown.
+""" .
+
+