Updated CMake, libarchive, Linux, and LLVM

This commit is contained in:
Alexander Hill
2025-12-13 18:16:59 -05:00
parent 70055d5bc8
commit 83f0d02342
4 changed files with 14 additions and 18 deletions

View File

@@ -1,18 +1,15 @@
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
SRC_HASH="90e21f2b89f19391ce7b90f6e48ed9fde5394d23ad30ae256fb8236b38b99788"
SRC_HASH="c7b847b57feacf5e182f4d14dd6cae545ac6843d55cb725f58e107cdf1c9ad73"
SRC_NAME="libarchive"
SRC_URL="https://www.libarchive.org/downloads/libarchive-3.8.3.tar.xz"
SRC_VERSION="3.8.3"
SRC_URL="https://libarchive.org/downloads/libarchive-3.8.4.tar.xz"
SRC_VERSION="3.8.4"
build() {
tar xf ../$SRC_FILENAME
cd libarchive-*/
# NOTE: bsdtar is disabled here because Busybox's implementation is complete
# enough to be useful and bootstrapping libarchive is a pain. ~ahill
./configure $TT_AUTOCONF_COMMON \
--disable-bsdtar \
--disable-static \
--enable-year2038
./configure $TT_AUTOCONF_COMMON --disable-static --enable-year2038
make -j $TT_PROCS
}
@@ -23,4 +20,4 @@ clean() {
package() {
cd libarchive-*/
make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
}
}