Commits
Ryan Schmidt authored 0749c69b1f2
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | |
5 5 | name libxl |
6 - | version 3.8.5.0 |
6 + | version 3.8.6.1 |
7 7 | revision 0 |
8 - | checksums rmd160 7a1251b48001b169c35da64fbfd273f505c98ddd \ |
9 - | sha256 a70459a019df61613eb4ce35e129e372a53d343eecd534b1aabc4f6158f2aea7 \ |
10 - | size 14061492 |
8 + | checksums rmd160 4c6076b84077aacdb344890ba559e3830eb951cb \ |
9 + | sha256 33f76e1dc3da1f0f2f3b5172a0aa76fb15413cf971bdd371b9ae5ef04501b613 \ |
10 + | size 14353869 |
11 11 | |
12 12 | set branch [join [lrange [split ${version} .] 0 2] .] |
13 13 | categories textproc |
14 14 | platforms darwin |
15 15 | maintainers {ryandesign @ryandesign} openmaintainer |
16 16 | license LibXL |
17 17 | |
18 18 | description library for reading and writing Microsoft Excel files |
19 19 | |
20 20 | long_description LibXL is a commercial ${description}. |
24 24 | dist_subdir ${name}/${version} |
25 25 | distfiles libxl-mac-${branch}${extract.suffix} |
26 26 | |
27 27 | worksrcdir libxl-mac-${version} |
28 28 | |
29 29 | use_configure no |
30 30 | |
31 31 | # The pre-compiled library is built for these architectures. |
32 32 | supported_archs x86_64 |
33 33 | |
34 - | # The pre-compiled library is linked with libstdc++. |
35 - | configure.cxx_stdlib libstdc++ |
34 + | # The pre-compiled library is linked with libc++. |
35 + | configure.cxx_stdlib libc++ |
36 36 | |
37 37 | set libxl lib/libxl.dylib |
38 38 | |
39 39 | build { |
40 40 | system -W ${worksrcpath} "install_name_tool -id ${prefix}/${libxl} ${libxl}" |
41 41 | } |
42 42 | |
43 43 | destroot { |
44 44 | xinstall -m 0644 ${worksrcpath}/${libxl} ${destroot}${prefix}/lib |
45 45 | # I don't know where the developers intend these to be installed but they |