Commits
Ryan Schmidt authored 7e235f8de12
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 xz |
6 - | version 5.2.3 |
7 - | revision 1 |
6 + | version 5.2.4 |
8 7 | categories archivers |
9 8 | # some executables are GPL, libs and everything else are public domain |
10 9 | license {public-domain GPL-2+} |
11 10 | platforms darwin |
12 11 | maintainers {ryandesign @ryandesign} openmaintainer |
13 12 | |
14 13 | description XZ Utils |
15 14 | |
16 15 | long_description \ |
17 16 | XZ utils consist of a few relatively separate submodules: \ |
18 17 | * LZMA/XZ encoder/decoder command line tool similar to gzip/bzip2 \ |
19 18 | * Scripts to ease grepping, diffing and viewing (lz*grep, lzdiff/lzcmp, lzmore/lzless) |
20 19 | |
21 20 | homepage https://tukaani.org/xz/ |
22 - | master_sites ${homepage} |
21 + | master_sites sourceforge:project/lzmautils |
23 22 | use_bzip2 yes |
24 23 | |
25 - | checksums rmd160 343c42e8485b874f8b797c703ee8d2edc8812090 \ |
26 - | sha256 fd9ca16de1052aac899ad3495ad20dfa906c27b4a5070102a2ec35ca3a4740c1 \ |
27 - | size 1207242 |
24 + | checksums rmd160 0c5a6ffd47d657fed0c7192f413422e503b79c69 \ |
25 + | sha256 3313fd2a95f43d88e44264e6b015e7d03053e681860b0d5d3f9baca79c57b7bf \ |
26 + | size 1287922 |
28 27 | |
29 28 | depends_lib port:libiconv port:gettext |
30 29 | |
31 30 | patchfiles c89.patch |
32 31 | |
33 32 | configure.args --with-libiconv-prefix=${prefix} --with-libintl-prefix=${prefix} |
34 33 | |
35 34 | # document that we always need legacy symlinks now that "lzmautils" refers here |
36 35 | configure.args-append --enable-lzma-links |
37 36 | |