@prefix rdf: . @prefix rdfs: . @prefix dcterms: . @prefix foaf: . @prefix 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 ; ] ; cpack:primaryRepository [ a cpack:GitRepository ; cpack:gitURL ] ; 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. """ .