Ticket #48915: libstrophe.Portfile.txt

File libstrophe.Portfile.txt, 1.0 KB (added by subpop (Link Dupont), 9 years ago)
Line 
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
4PortSystem 1.0
5PortGroup github 1.0
6
7github.setup            strophe libstrophe 0.8.8
8categories              net
9platforms               darwin
10maintainers             me.com:link.dupont
11description             A simple, lightweight C library for writing XMPP clients
12homepage                http://strophe.im/libstrophe/
13license                 {GPL-3, MIT}
14
15long_description        libstrophe is a lightweight XMPP client library written in C. \
16                        It has minimal dependencies and is configurable for various \
17                        environments. It runs well on both Linux, Unix, and Windows \
18                        based platforms.
19
20checksums               rmd160  19a8af97000f08d0b7553c4ce435f8cc83af8071 \
21                        sha256  96e1c478241a020d8b63f7bec5d0e556e688ec86eb029c515120998363649cf7
22
23depends_build           port:m4 \
24                        port:pkgconfig
25depends_lib             port:expat \
26                        port:openssl
27
28use_autoreconf          yes
29
30variant libxml description {Use libxml for XML parsing} {
31        depends_lib-append      port:libxml2
32        configure.args-append   --with-libxml2
33}
34