rda_gr2/commit

Installed template

authorJan Wielemaker
Tue Mar 1 15:38:02 2011 +0100
committerJan Wielemaker
Tue Mar 1 15:38:02 2011 +0100
commitd7afb474b1e38b502c1c42a10d24d9c8baa22b04
tree2c8e5b230cd8ea3fe6a7490296462dc8c07dcf3e
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..d6d5f46
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(rda_gr2, link).
diff --git a/config-available/rda_gr2.pl b/config-available/rda_gr2.pl
new file mode 100644
index 0000000..40485ae
--- /dev/null
+++ b/config-available/rda_gr2.pl
@@ -0,0 +1,5 @@
+:- module(conf_rda_gr2, []).
+
+/** <module> RDA Group 2 Elements
+*/
+
diff --git a/rdf/cpack/rda_gr2.ttl b/rdf/cpack/rda_gr2.ttl
new file mode 100644
index 0000000..26fd30d
--- /dev/null
+++ b/rdf/cpack/rda_gr2.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/rda_gr2.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 "rda_gr2" ;
+	dcterms:title "RDA Group 2 Elements" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jan Wielemaker" ;
+		       foaf:mbox "@FOAFMBOX@" ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/rda_gr2.git>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+