Commits
David B. Evans authored 93c0bfcfdd9
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 lzip |
6 6 | epoch 20091025 |
7 - | version 1.20 |
7 + | version 1.21 |
8 8 | categories archivers |
9 9 | license GPL-2+ |
10 10 | platforms darwin |
11 11 | maintainers nomaintainer |
12 12 | description Compression program based on LZMA similar to gzip or bzip2 |
13 13 | long_description Lzip is a lossless data compressor based on the LZMA \ |
14 14 | algorithm, with very safe integrity checking and a \ |
15 15 | user interface similar to the one of gzip or bzip2. \ |
16 16 | Lzip decompresses almost as fast as gzip and compresses \ |
17 17 | better than bzip2, which makes it well suited for \ |
18 18 | software distribution and data archiving. |
19 19 | homepage https://www.nongnu.org/lzip/lzip.html |
20 20 | master_sites https://download.savannah.gnu.org/releases/lzip/ |
21 21 | |
22 - | checksums rmd160 72868e3b290a7c5ece0919978f3cf19714dc5f10 \ |
23 - | sha256 c93b81a5a7788ef5812423d311345ba5d3bd4f5ebf1f693911e3a13553c1290c \ |
24 - | size 103426 |
22 + | checksums rmd160 5e37348c9061d14f7776b99ac816ad730c9fade4 \ |
23 + | sha256 e48b5039d3164d670791f9c5dbaa832bf2df080cb1fbb4f33aa7b3300b670d8b \ |
24 + | size 105558 |
25 25 | |
26 26 | variant universal {} |
27 27 | |
28 28 | # respect default optimization |
29 29 | configure.cflags-replace -Os -O2 |
30 30 | |
31 31 | configure.args CXX="${configure.cxx}" \ |
32 32 | CXXFLAGS="${configure.cxxflags} [get_canonical_archflags cxx]" \ |
33 33 | CPPFLAGS="${configure.cppflags}" \ |
34 34 | LDFLAGS="${configure.ldflags} [get_canonical_archflags ld]" |