termux-packages/packages/tsu/build.sh

28 lines
766 B
Bash
Raw Normal View History

2016-07-07 18:56:22 +02:00
TERMUX_PKG_HOMEPAGE=https://github.com/cswl/tsu
TERMUX_PKG_DESCRIPTION="A su wrapper for Termux"
TERMUX_PKG_LICENSE="ISC"
TERMUX_PKG_MAINTAINER="@termux"
2021-12-24 05:10:56 +01:00
TERMUX_PKG_VERSION=8.6.0
_COMMIT=800b448becafb0186eecc366c50442ed9f8bb944
TERMUX_PKG_PLATFORM_INDEPENDENT=true
TERMUX_PKG_BUILD_IN_SRC=true
2021-12-24 05:10:56 +01:00
TERMUX_PKG_SRCURL=https://github.com/cswl/tsu.git
TERMUX_PKG_GIT_BRANCH=v8
termux_step_post_get_source() {
git fetch --unshallow
git checkout $_COMMIT
}
termux_step_make() {
2020-05-02 06:08:41 +02:00
python3 ./extract_usage.py
}
2016-07-07 18:56:22 +02:00
termux_step_make_install() {
2020-05-02 06:08:41 +02:00
# There is no install.sh script in the repository for now
mkdir -p "$TERMUX_PREFIX/bin"
install -Dm755 tsu "$TERMUX_PREFIX/bin"
2020-05-02 06:08:41 +02:00
# sudo - is an included addon in tsu now
ln -sf "$TERMUX_PREFIX/bin/tsu" "$TERMUX_PREFIX/bin/sudo"
2016-07-07 18:56:22 +02:00
}