owl/commit

Installed template

authorJan Wielemaker
Thu Dec 2 10:51:51 2010 +0100
committerJan Wielemaker
Thu Dec 2 10:51:51 2010 +0100
commitaa63a904c12443009d809c6e98c95ca3ec3b1bb6
tree3973fa38f585bc1cdf0540de12ffedae2f5f502f
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..d50f569
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(owl, link).
diff --git a/config-available/owl.pl b/config-available/owl.pl
new file mode 100644
index 0000000..b35c969
--- /dev/null
+++ b/config-available/owl.pl
@@ -0,0 +1,5 @@
+:- module(conf_owl, []).
+
+/** <module> Library of OWL based predicates
+*/
+
diff --git a/rdf/cpack/owl.ttl b/rdf/cpack/owl.ttl
new file mode 100644
index 0000000..941ff7f
--- /dev/null
+++ b/rdf/cpack/owl.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/owl.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 "owl" ;
+	dcterms:title "Library of OWL based predicates" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "@FOAFNAME@" ;
+		       foaf:mbox "@FOAFMBOX@" ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <@FETCHREPOSITORY@>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+