@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/rdf-mt.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 "rdf-mt" ;
	dcterms:title "RDF Semantics Implementation" ;
	cpack:author [ a foaf:Person ;
		       foaf:name "Jan Wielemaker" ;
		       foaf:mbox <mailto:J.Wielemaker@cs.vu.nl> ;
		     ] ;
	cpack:primaryRepository
	    [ a cpack:GitRepository ;
	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/rdf-mt.git>
	    ] ;
	cpack:description

"""This cpack implements the
   [RDF semantics](https://dvcs.w3.org/hg/rdf/raw-file/default/rdf-mt/index.html)
   as defined by RDF 1.1.  In particular it implement running the test suite.
   To run the test suite, proceed as follows:

     1. Install [SWI-Prolog](http://www.swi-prolog.org) version 7.1.4
     2. Install [ClioPatria](http://cliopatria.swi-prolog.org) from git
     3. Configure a new ClioPatria project
     4. Run the project and run

        ==
        ?- cpack_install('rdf-mt').
	==

     5. Load the manifest using

        ==
        ?- load_manifest(remote).
        ==

     6. Run the test suite using

        ==
        ?- run_tests.
        ==

   All tests succeeded using the suite dated Dec 17, 2013.
""" .