termux-packages/packages/root-repo/build.sh

20 lines
737 B
Bash
Raw Normal View History

2018-10-02 02:21:39 +02:00
TERMUX_PKG_HOMEPAGE=https://github.com/termux/termux-root-packages
TERMUX_PKG_DESCRIPTION="Package repository containing programs for rooted devices"
TERMUX_PKG_LICENSE="Apache-2.0"
2018-10-02 02:21:39 +02:00
TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
2019-03-20 10:07:38 +01:00
TERMUX_PKG_VERSION=1.5
TERMUX_PKG_DEPENDS="termux-keyring"
TERMUX_PKG_PLATFORM_INDEPENDENT=true
2018-10-02 02:21:39 +02:00
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/etc/apt/sources.list.d
2019-03-20 10:07:38 +01:00
echo "deb https://dl.bintray.com/grimler/termux-root-packages-24 root stable" > $TERMUX_PREFIX/etc/apt/sources.list.d/root.list
2018-10-02 02:21:39 +02:00
}
termux_step_create_debscripts() {
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
echo "echo Downloading updated package list ..." >> postinst
echo "apt update" >> postinst
echo "exit 0" >> postinst
}