diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2019-06-05 22:59:42 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2019-06-05 22:59:42 +0300 |
commit | c59d5a58b794fad82bdb4c51fc84d834e8a85c9c (patch) | |
tree | c344999593a69504ca8673f5799778ef132f4163 | |
parent | 121ea45a069e19f98e1e67b2e2531108ff1f9116 (diff) |
lrzip added
-rw-r--r-- | packages/app-arch/lrzip/lrzip-scm.exheres-0 | 5 | ||||
-rw-r--r-- | packages/app-arch/lrzip/lrzip.exlib | 22 |
2 files changed, 27 insertions, 0 deletions
diff --git a/packages/app-arch/lrzip/lrzip-scm.exheres-0 b/packages/app-arch/lrzip/lrzip-scm.exheres-0 new file mode 100644 index 0000000..ad4ef99 --- /dev/null +++ b/packages/app-arch/lrzip/lrzip-scm.exheres-0 @@ -0,0 +1,5 @@ +# Distributed under the terms of the GNU General Public License v2 +# Copyright 2019 Gluzskiy Alexandr <sss@sss.chaoslab.ru> + +require lrzip +PLATFORMS="~amd64 ~x86" diff --git a/packages/app-arch/lrzip/lrzip.exlib b/packages/app-arch/lrzip/lrzip.exlib new file mode 100644 index 0000000..974b643 --- /dev/null +++ b/packages/app-arch/lrzip/lrzip.exlib @@ -0,0 +1,22 @@ +# Distributed under the terms of the GNU General Public License v2 +# Copyright 2019 Gluzskiy Alexandr <sss@sss.chaoslab.ru> + +require github [ user=ckolivas tag=v${PV} ] +require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 1.13 1.12 1.11 ] ] + +SLOT="0" +DESCRIPTION="" +MYOPTIONS="" +SUMMARY="Long Range ZIP or LZMA RZIP" +DESCRIPTION="A compression utility that excels at compressing large files (usually > 10-50 MB). Larger files and/or more free RAM means that the utility will be able to more effectively compress your files (ie: faster / smaller size), especially if the filesize(s) exceed 100 MB. You can either choose to optimise for speed (fast compression / decompression) or size, but not both." + +DEPENDENCIES=" + build+run: + app-arch/tar +" + +DEFAULT_SRC_CONFIGURE_PARAMS=( + --enable-asm +) + + |