XZ Utils 5.0.5

This commit is contained in:
Andrius Štikonas 2021-03-25 21:47:57 +00:00
parent f59909142d
commit c345001ee8
7 changed files with 69 additions and 9 deletions

View file

@ -10,6 +10,8 @@ set -e
. helpers.sh
build xz-5.0.5
echo "Bootstrapping completed."
exec env - PATH=/after/bin PS1="\w # " bash -i

10
sysa/xz-5.0.5/checksums Normal file
View file

@ -0,0 +1,10 @@
4059df79a032a49e91f93a74a69695b63fdbf8bca07a3db694a11e55306f68cb /after/bin/lzmadec
5d659d1117c86e8e4c3a9008c6864fb2b9fe1957e88744212bf18881117cb650 /after/bin/lzmainfo
324136feea5a7c5b4d618ad098c3cd80233aa45077d6a1de54608683b5ee2268 /after/bin/xz
79eedbc8cce14e5a9baf71a9b81c7ab3c0fa24e28ff32067b2ee0bd72492583b /after/bin/xzdec
104548a69cb9ced78dd4fd08f5e8a1b6b07230ada5e6554a07368ed84191da86 /after/bin/xzdiff
34db9e45f4ca4bc96b8280ac438ac6c4fab95e44e812e20cf86a2248bf2f7579 /after/bin/xzgrep
2ce262d47007d17dc668e9a9a3263f7fe3f145d61971f189c21f59b25498a4e3 /after/bin/xzless
a050699ff5484e063154d11bf05a9a4eb6c2d38bac09a975a96b42c8b45a72ef /after/bin/xzmore
6a75c21815666ea72ee0cace326edddf04840096425da2a8936bccc026233292 /after/lib/liblzma.a
7691b11f60a825f9556bc213997a011400ae06a812d02f67b39438b8bdba8212 /after/lib/liblzma.la

View file

@ -0,0 +1,19 @@
SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
SPDX-License-Identifier: Unlicense
Build with Automake 1.10
--- configure.ac 2021-03-25 21:25:45.309736487 +0000
+++ configure.ac 2021-03-25 21:28:06.683426486 +0000
@@ -417,8 +417,8 @@
echo "Initializing Automake:"
# Automake 1.10 should still be enough but you need to omit serial-tests.
-dnl AM_INIT_AUTOMAKE([1.10 foreign tar-v7 filename-length-max=99])
-AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 serial-tests])
+AM_INIT_AUTOMAKE([1.10 foreign tar-v7 filename-length-max=99])
+dnl AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 serial-tests])
AC_PROG_LN_S
AC_PROG_CC_C99

18
sysa/xz-5.0.5/xz-5.0.5.sh Executable file
View file

@ -0,0 +1,18 @@
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default_src_prepare
autoreconf-2.65 -f
}
src_configure() {
./configure \
--prefix="${PREFIX}" \
--disable-shared \
--target=i386-unknown-linux-gnu \
--host=i386-unknown-linux-gnu \
--build=i386-unknown-linux-gnu
}