0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-04 18:45:52 +00:00
Henrik Grimler e9fb15459d
tsu: fix issue with latest magisk
The busybox path, /sbin/.magisk/busybox, has been changed (in v27?),
so running tsu currently fails.

Fix by always assume "other su".
2024-06-24 21:41:16 +02:00

29 lines
788 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/cswl/tsu
TERMUX_PKG_DESCRIPTION="A su wrapper for Termux"
TERMUX_PKG_LICENSE="ISC"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=8.6.0
TERMUX_PKG_REVISION=1
_COMMIT=800b448becafb0186eecc366c50442ed9f8bb944
TERMUX_PKG_PLATFORM_INDEPENDENT=true
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_SRCURL=git+https://github.com/cswl/tsu
TERMUX_PKG_GIT_BRANCH=v8
termux_step_post_get_source() {
git fetch --unshallow
git checkout $_COMMIT
}
termux_step_make() {
python3 ./extract_usage.py
}
termux_step_make_install() {
# There is no install.sh script in the repository for now
mkdir -p "$TERMUX_PREFIX/bin"
install -Dm755 tsu "$TERMUX_PREFIX/bin"
# sudo - is an included addon in tsu now
ln -sf "$TERMUX_PREFIX/bin/tsu" "$TERMUX_PREFIX/bin/sudo"
}