@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/virgil.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 "virgil" ;
	dcterms:title "Adverse Event Mining" ;
	cpack:author [ a foaf:Person ;
		       foaf:name "Michiel Hildebrand" ;
		       foaf:mbox <literal(f02be10c9354eb886121e2b9952f0b15c935cb90)> ;
		     ] ;
	cpack:primaryRepository
	    [ a cpack:GitRepository ;
	      cpack:gitURL <vu:git/ClioPatria/virgil.git>
	    ] ;
	cpack:description

"""Package description goes here.  You can use PlDoc markup.
""" .