Ticket #48916: Portfile

File Portfile, 1.3 KB (added by kencu (Ken), 7 years ago)

Portfile.20171010.version.0.5.1

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
3PortSystem         1.0
4
5name               profanity
6version            0.5.1
7categories         net
8platforms          darwin
9maintainers        me.com:link.dupont openmaintainer
10description        A console-based XMPP client written in C using ncurses
11homepage           http://profanity.im/
12license            GPL-3
13master_sites       ${homepage}
14
15long_description   Profanity is a console based XMPP client written in C using \
16                   ncurses and libstrophe, inspired by Irssi.
17
18checksums          rmd160  5ce5f5cb21ceb78ed55d4ca30e285aa9e2cc34ad \
19                   sha256  e3513713e74ec3363fbdbac2919bdc17e249988780cc5a4589d1425807a7feb8
20
21depends_build      port:m4 \
22                   port:pkgconfig
23depends_lib        port:ncurses \
24                   port:libstrophe \
25                   port:curl \
26                   port:openssl \
27                   port:glib2 \
28                   port:expat \
29                   port:libotr \
30                   port:gnutls
31
32variant notifications description {Enable terminal-notifier for notifications} {
33    depends_lib-append     port:terminal-notifier
34    configure.args-append  --enable-notifications
35}
36