opmv/commit
Installed template
author | Jacco van Ossenbruggen |
---|---|
Mon Nov 29 21:53:43 2010 +0100 | |
committer | Jacco van Ossenbruggen |
Mon Nov 29 21:53:43 2010 +0100 | |
commit | 4674c3a60df5308ebbc96ab2df51dc93ebcac9a0 |
tree | 1e8487db7386ce4c083f64680152bd600ba975b9 |
parent |
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS new file mode 100644 index 0000000..dca99f1 --- /dev/null +++ b/config-available/DEFAULTS @@ -0,0 +1 @@ +config(opmv, link). diff --git a/config-available/opmv.pl b/config-available/opmv.pl new file mode 100644 index 0000000..05ca809 --- /dev/null +++ b/config-available/opmv.pl @@ -0,0 +1,5 @@ +:- module(conf_opmv, []). + +/** <module> [83,99,104,101,109,97,32,97,110,100,32,118,105,122,46,32,115,117,112,112,111,114,116,105,110,103,32,116,104,101,32,79,112,101,110,32,80,114,111,118,101,110,97,110,99,101,32,77,111,100,101,108] +*/ + diff --git a/rdf/cpack/opmv.ttl b/rdf/cpack/opmv.ttl new file mode 100644 index 0000000..f721a7a --- /dev/null +++ b/rdf/cpack/opmv.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/opmv.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 "opmv" ; + dcterms:title "[83,99,104,101,109,97,32,97,110,100,32,118,105,122,46,32,115,117,112,112,111,114,116,105,110,103,32,116,104,101,32,79,112,101,110,32,80,114,111,118,101,110,97,110,99,101,32,77,111,100,101,108]" ; + 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. +""" . + +