1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup cmake 1.0 |
---|
6 | |
---|
7 | name json_spirit |
---|
8 | version 4.03 |
---|
9 | categories devel |
---|
10 | platforms darwin |
---|
11 | |
---|
12 | maintainers uwe-arzt.de:mail |
---|
13 | |
---|
14 | description JSON Spirit is a C++ library that reads and writes JSON files or streams. |
---|
15 | long_description JSON is a text file format similar to XML, but less verbose. It has been\ |
---|
16 | called XML lite. This article describes JSON Spirit, a C++ library\ |
---|
17 | that reads and writes JSON files or streams. It is written using the\ |
---|
18 | Boost Spirit parser generator. If you are already using Boost, you can\ |
---|
19 | use JSON Spirit without any additional dependencies. |
---|
20 | |
---|
21 | homepage http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx |
---|
22 | |
---|
23 | # this is a mirror on my homepage, because codeproject requires an login |
---|
24 | # the author allows the mirror (and also the license) |
---|
25 | master_sites http://www.uwe-arzt.de/files/ |
---|
26 | distname ${name}_v${version} |
---|
27 | use_zip yes |
---|
28 | |
---|
29 | checksums ${distfiles} md5 6ab3a269488392e840f9dfffb67882f1 \ |
---|
30 | sha1 22f8a2a37e367ba07f6c1e56316a4ae35bb798b1 |
---|
31 | |
---|
32 | depends_lib port:boost |
---|
33 | |
---|