termux-packages/packages/tsu/build.sh

18 lines
761 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"
2018-03-12 11:16:36 +01:00
TERMUX_PKG_VERSION=2.0
2016-07-07 18:56:22 +02:00
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install () {
2018-03-12 11:16:36 +01:00
termux_download https://raw.githubusercontent.com/cswl/tsu/c0a2603b57511a1492dfe6ec4e6ef452e01a58e6/tsu \
2017-03-04 21:54:30 +01:00
$TERMUX_PREFIX/bin/tsu \
2018-03-12 11:16:36 +01:00
ee33a58fd19bfc6c99aab8af4c836ede4b749b4f1ca5957cbb66503828bec7c7
termux_download https://raw.githubusercontent.com/cswl/tsu/c0a2603b57511a1492dfe6ec4e6ef452e01a58e6/tsudo \
$TERMUX_PREFIX/bin/tsudo \
275d025ce7e241f989fcbb1d12f49ed9ab927b3b0e8a1a41de2a89fc1bfee6b0
2017-03-04 21:54:30 +01:00
touch $TERMUX_PREFIX/bin/tsu
2016-07-07 18:56:22 +02:00
chmod +x $TERMUX_PREFIX/bin/tsu
2018-03-12 11:16:36 +01:00
touch $TERMUX_PREFIX/bin/tsudo
chmod +x $TERMUX_PREFIX/bin/tsudo
2016-07-07 18:56:22 +02:00
}