vumix/commit

Installed template

authorMichiel Hildebrand
Wed Mar 21 14:48:07 2012 +0100
committerMichiel Hildebrand
Wed Mar 21 14:48:07 2012 +0100
commitca975235fc72305c074c080de7023555c9b4d515
tree3c002cf29e6a169172bed28b8aea4f9e04720392
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..004db6a
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(vumix, link).
diff --git a/config-available/vumix.pl b/config-available/vumix.pl
new file mode 100644
index 0000000..edd1bd1
--- /dev/null
+++ b/config-available/vumix.pl
@@ -0,0 +1,5 @@
+:- module(conf_vumix, []).
+
+/** <module> Video annotation prototype
+*/
+
diff --git a/rdf/cpack/vumix.ttl b/rdf/cpack/vumix.ttl
new file mode 100644
index 0000000..056c828
--- /dev/null
+++ b/rdf/cpack/vumix.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/vumix.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:Application ;
+	cpack:packageName "vumix" ;
+	dcterms:title "Video annotation prototype" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "@FOAFNAME@" ;
+		       foaf:mbox <@FOAFMBOX@> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <vu:git/ClioPatria/vumix.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use PlDoc markup.
+""" .
+
+