0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-07-17 03:34:45 +00:00
Files
termux-packages/packages/7zip/build.sh
2025-07-10 10:52:30 +05:30

65 lines
2.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://www.7-zip.org
TERMUX_PKG_DESCRIPTION="7-Zip file archiver with a high compression ratio"
TERMUX_PKG_LICENSE="LGPL-2.1, BSD 3-Clause, BSD 2-Clause"
TERMUX_PKG_LICENSE_FILE="DOC/License.txt, DOC/copying.txt"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="25.00"
TERMUX_PKG_SRCURL=(
"https://www.7-zip.org/a/7z${TERMUX_PKG_VERSION//./}-src.tar.xz"
"https://www.7-zip.org/a/7z${TERMUX_PKG_VERSION//./}-linux-arm.tar.xz" # for manual, arm is smallest
)
TERMUX_PKG_SHA256=(
bff9e69b6ca73a5b8715d7623870a39dc90ad6ce1f4d1070685843987af1af9b
aa43ad0080672e43340254e7f5b2afc8a5fe49eb9ee1c5cbbfe979a2f220bbda
)
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_BUILD_IN_SRC=true
# The original "termux_extract_src_archive" always strips the first components
# but the source of 7zip is directly under the root directory of the tar file
termux_extract_src_archive() {
local file="$TERMUX_PKG_CACHEDIR/$(basename "$TERMUX_PKG_SRCURL")"
mkdir -p "$TERMUX_PKG_SRCDIR"
tar -xf "$file" -C "$TERMUX_PKG_SRCDIR"
}
termux_step_pre_configure() {
if [ "$TERMUX_ARCH" = 'aarch64' ]; then
CFLAGS+=' -march=armv8.1-a+crypto'
CXXFLAGS+=' -march=armv8.1-a+crypto'
fi
# Remove executable perms from docs
chmod -x DOC/*.txt
# Remove -Werror to make build succeed
sed -i -e 's/-Werror//' CPP/7zip/7zip_gcc.mak
}
termux_step_make() {
# from https://git.alpinelinux.org/aports/tree/community/7zip/APKBUILD?id=b4601c88f608662c75422311b7ca3c26fab4b1f4
cd CPP/7zip/Bundles/Alone2
mkdir -p b/c
# TODO: enable asm
# DISABLE_RAR: RAR codec is non-free
# -D_GNU_SOURCE: broken sched.h defines
make \
CC="$CC $CFLAGS $LDFLAGS -D_GNU_SOURCE" \
CXX="$CXX $CXXFLAGS $LDFLAGS -D_GNU_SOURCE" \
DISABLE_RAR=1 \
--file ../../cmpl_clang.mak \
--jobs "$TERMUX_PKG_MAKE_PROCESSES"
}
termux_step_make_install() {
install -Dm0755 \
-t "$TERMUX_PREFIX"/bin \
"$TERMUX_PKG_BUILDDIR"/CPP/7zip/Bundles/Alone2/b/c/7zz
install -Dm0644 \
-t "$TERMUX_PREFIX"/share/doc/"$TERMUX_PKG_NAME" \
"$TERMUX_PKG_BUILDDIR"/DOC/{7zC,7zFormat,copying,License,lzma,Methods,readme,src-history}.txt
tar -C "$TERMUX_PREFIX"/share/doc/"$TERMUX_PKG_NAME" \
-xvf "$TERMUX_PKG_CACHEDIR/$(basename "${TERMUX_PKG_SRCURL[1]}")" MANUAL
# Remove carriage returns from docs
find "$TERMUX_PREFIX"/share/doc/"$TERMUX_PKG_NAME" \
-type f -execdir sed -i -e 's/\r$//g' {} +
}