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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup github 1.0 |
---|
5 | |
---|
6 | github.setup mackyle xar 1.6.1 xar- |
---|
7 | |
---|
8 | categories archivers sysutils |
---|
9 | platforms darwin freebsd linux |
---|
10 | license BSD |
---|
11 | description xar is the eXtensible ARchiver |
---|
12 | maintainers mww mps |
---|
13 | long_description ${description} |
---|
14 | |
---|
15 | worksrcdir ${distname}/xar |
---|
16 | |
---|
17 | checksums rmd160 6bcdbf03f6c58d64eace10b4c52104d642995063 \ |
---|
18 | sha256 e5edbb3e350c3aaee030c2c20909f0532938cdd2b9ed9da4476088c87eb7a65e |
---|
19 | |
---|
20 | depends_lib port:bzip2 \ |
---|
21 | port:libiconv \ |
---|
22 | port:libxml2 \ |
---|
23 | path:lib/libssl.dylib:openssl \ |
---|
24 | port:zlib |
---|
25 | |
---|
26 | patchfiles patch-ext2.c |
---|
27 | |
---|
28 | use_autoconf yes |
---|
29 | |
---|
30 | configure.args --with-xml2-config=${prefix}/bin/xml2-config |
---|
31 | |
---|
32 | post-destroot { |
---|
33 | reinplace "s/installed=no/installed=yes/" ${destpath}${prefix}/lib/libxar.la |
---|
34 | } |
---|
35 | |
---|