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

20 lines
762 B
Bash
Raw Normal View History

2019-01-30 00:31:30 +01:00
TERMUX_PKG_HOMEPAGE=https://github.com/termux/unstable-packages
2019-01-28 17:37:24 +01:00
TERMUX_PKG_DESCRIPTION="Package repository containing new/unstable programs and libraries."
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com>"
2019-03-11 16:29:21 +01:00
TERMUX_PKG_VERSION=2.0
2019-01-28 17:37:24 +01:00
TERMUX_PKG_DEPENDS="termux-keyring"
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/etc/apt/sources.list.d
2019-03-11 16:29:21 +01:00
echo "deb https://dl.bintray.com/xeffyr/unstable-packages-24 unstable main" > $TERMUX_PREFIX/etc/apt/sources.list.d/unstable.list
2019-01-28 17:37:24 +01:00
}
termux_step_create_debscripts() {
2019-01-28 17:37:24 +01:00
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
echo "echo Downloading updated package list ..." >> postinst
echo "apt update" >> postinst
echo "exit 0" >> postinst
}