37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
24 lines
800 B
Bash
24 lines
800 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.5.1
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_SRCURL=(https://github.com/cswl/tsu/archive/v$TERMUX_PKG_VERSION.tar.gz)
|
|
TERMUX_PKG_SHA256=(26014e092ba0fe9723ec244c8e6025a639944b4226df97b47342cdb7a01265d6)
|
|
|
|
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"
|
|
cp $TERMUX_PKG_SRCDIR/tsu "$TERMUX_PREFIX/bin/tsu"
|
|
chmod 0755 "$TERMUX_PREFIX/bin/tsu"
|
|
# sudo - is an included addon in tsu now
|
|
ln -sf "$TERMUX_PREFIX/bin/tsu" "$TERMUX_PREFIX/bin/sudo"
|
|
}
|