mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
65 lines
2.3 KiB
Bash
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="24.09"
|
|
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=(
|
|
49c05169f49572c1128453579af1632a952409ced028259381dac30726b6133a
|
|
ea446c3843a468155da8313fa99eac9264305ed75d3b3ff0fa91dee07a665da2
|
|
)
|
|
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' {} +
|
|
}
|