1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python24 1.0 |
---|
5 | |
---|
6 | name py-rdflib |
---|
7 | version 2.3.1 |
---|
8 | categories python textproc |
---|
9 | platforms darwin freebsd |
---|
10 | maintainers mww@opendarwin.org |
---|
11 | description Python library for working with RDF |
---|
12 | long_description RDFLib is a Python library for working with RDF, a \ |
---|
13 | simple yet powerful language for representing \ |
---|
14 | information. The library contains an RDF/XML \ |
---|
15 | parser/serializer, a TripleStore, an InformationStore \ |
---|
16 | and various store backends (InMemory, SleepyCat BTree, \ |
---|
17 | ZODB BTree). |
---|
18 | |
---|
19 | homepage http://rdflib.net/ |
---|
20 | master_sites ${homepage}2006/02/27/ |
---|
21 | distname rdflib-${version} |
---|
22 | checksums md5 50876327771dc5a6cf07bf4f26a63187 |
---|
23 | |
---|
24 | test.run yes |
---|
25 | test.cmd ${python.bin} run_tests.py |
---|
26 | test.target |
---|
27 | |
---|
28 | post-destroot { |
---|
29 | xinstall -m 644 -W ${worksrcpath} CHANGELOG LICENSE \ |
---|
30 | README ${destroot}${prefix}/share/doc/${name} |
---|
31 | xinstall -m 644 ${worksrcpath}/example.py \ |
---|
32 | ${destroot}${prefix}/share/doc/${name}/examples |
---|
33 | } |
---|