command/commit

Installed template

authorJan Wielemaker
Thu Mar 10 12:01:46 2011 +0100
committerJan Wielemaker
Thu Mar 10 12:01:46 2011 +0100
commitfc60edbcd5dcd67e2187830dc4f8a65e476c02e9
tree545fd13dc962ba96b1a668d1b895a0880930724c
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..97f90df
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(command, link).
diff --git a/config-available/command.pl b/config-available/command.pl
new file mode 100644
index 0000000..b5502ab
--- /dev/null
+++ b/config-available/command.pl
@@ -0,0 +1,5 @@
+:- module(conf_command, []).
+
+/** <module> Command line interface
+*/
+
diff --git a/rdf/cpack/command.ttl b/rdf/cpack/command.ttl
new file mode 100644
index 0000000..567e762
--- /dev/null
+++ b/rdf/cpack/command.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/command.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 "command" ;
+	dcterms:title "Command line interface" ;
+	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/command.git>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+