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 github 1.0 |
---|
6 | PortGroup cmake 1.0 |
---|
7 | |
---|
8 | name pugixml |
---|
9 | version 1.6 |
---|
10 | revision 1 |
---|
11 | categories textproc |
---|
12 | platforms darwin |
---|
13 | license MIT |
---|
14 | maintainers hates.ms:nikkoara |
---|
15 | |
---|
16 | description C++ Library for XML processing |
---|
17 | |
---|
18 | long_description C++ library for creating and manipulating XML DOMs. Features: \ |
---|
19 | efficient parsing of XML, XPath 1.0 support, full Unicode support. |
---|
20 | |
---|
21 | homepage http://pugixml.org/ |
---|
22 | |
---|
23 | master_sites http://github.com/zeux/pugixml/releases/download/v${version} |
---|
24 | distfiles pugixml-${version}.tar.gz |
---|
25 | checksums sha256 473705c496d45ee6a74f73622b175dfb5dde0de372c4dc61a5acb964516cd9de |
---|
26 | |
---|
27 | universal_variant yes |
---|
28 | |
---|
29 | worksrcdir ${distname}/scripts |
---|
30 | |
---|
31 | configure.args-append -DBUILD_SHARED_LIBS=ON |
---|