Ticket #53036: Portfile

File Portfile, 1.4 KB (added by cwlin (Cheng-Wei Lin), 8 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
2PortSystem          1.0
3PortGroup           github 1.0
4
5github.setup        chewing libchewing 0.5.1 v
6github.tarball_from releases
7use_bzip2           yes
8
9categories          devel
10platforms           darwin
11license             LGPL-2.1
12
13maintainers         gmail.com:halboof \
14                    openmaintainer
15description         The intelligent phonetic input method library
16long_description    The Chewing is an intelligent phonetic (Zhuyin/Bopomofo) \
17                    input method, one of the most popular choices for \
18                    Traditional Chinese users. Chewing was inspired by other \
19                    proprietary intelligent Zhuyin input methods under \
20                    Microsoft Windows, namely, Wang-Xin by Eten, Microsoft \
21                    New Zhuyin, and Nature Zhuyin.
22homepage            http://chewing.im/
23checksums           rmd160  4d6b48f8a40c99b5c36539a255368e0a622d5f78 \
24                    sha256  9708c63415fa6034435c0f38100e7d30d0e1bac927f67bec6dfeb3fef016172b
25
26configure.args      --without-sqlite3
27
28variant sqlite3 description {Build sqlite3 support} {
29    depends_lib-append \
30        port:sqlite3
31    configure.args-delete \
32        --without-sqlite3
33    configure.args-append \
34        --with-sqlite3
35}
36