skos/commit

Installed template

authorJan Wielemaker
Mon Nov 22 16:36:29 2010 +0100
committerJan Wielemaker
Mon Nov 22 16:36:29 2010 +0100
commitb486a138f754fcf8621d1abcdaae7d34dd889ab3
tree19b4649a11b3c5cb335ebc3955cd05955d71ae08
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..26b7e88
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(skos, link).
diff --git a/config-available/skos.pl b/config-available/skos.pl
new file mode 100644
index 0000000..d49cd20
--- /dev/null
+++ b/config-available/skos.pl
@@ -0,0 +1,5 @@
+:- module(conf_skos, []).
+
+/** <module> SKOS schema and libraries
+*/
+
diff --git a/rdf/cpack/skos.ttl b/rdf/cpack/skos.ttl
new file mode 100644
index 0000000..5309a8e
--- /dev/null
+++ b/rdf/cpack/skos.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://www.swi-prolog.org/cliopatria/cpack#> .
+
+# This file is a Turtle-format RDF file that describes the package.  It
+# *must* be located in rdf/cpack/skos.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 "skos" ;
+	dcterms:title "SKOS schema and libraries" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jan Wielemaker" ;
+		       foaf:mbox "J.Wielemaker@cs.vu.nl" ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/skos.git>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+