Ticket #40044: Portfile

File Portfile, 1.1 KB (added by jessekornblum@…, 11 years ago)

Updated with feedback

Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           github 1.0
5
6github.setup        LightboxTech liblightgrep 1.2.1 v
7categories          devel
8platforms           darwin
9maintainers         gmail.com:jessekornblum
10license             GPL-3
11homepage            http://www.lightboxtechnologies.com/lightgrep-engine
12
13description         Search for regular expressions as defined in Unicode \
14                    Technical Standard 18
15long_description    ${description}, http://www.unicode.org/reports/tr18/
16
17checksums           rmd160  3beb47cea9fa67534e75955ab6f7ede597c3730a \
18                    sha256  febbe43daee379b1101174d9f779e5826ab4e8c55909ce65f03e321ab2ec9c0b
19
20depends_build       port:automake \
21                    port:autoconf \
22                    port:libtool \
23                    port:bison
24
25depends_lib         port:icu \
26                    port:boost
27
28universal_variant   no
29
30pre-configure {
31    system -W ${worksrcpath} "sh bootstrap.sh"
32}
33
34compiler.whitelist  macports-gcc-4.8 \
35                    macports-gcc-4.7 \
36                    macports-gcc-4.6
37
38configure.args      CXX=${configure.cxx} \
39                    CC=${configure.cc}