remove package: unstable-repo

This commit is contained in:
Leonid Pliushch 2021-10-25 20:12:12 +03:00
parent 0ee734e780
commit 9bf4a88524
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
TERMUX_PKG_HOMEPAGE=https://github.com/termux/unstable-packages
TERMUX_PKG_DESCRIPTION="Package repository containing new/unstable programs and libraries."
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="Leonid Pliushch <leonid.pliushch@gmail.com>"
TERMUX_PKG_VERSION=8.0
TERMUX_PKG_DEPENDS="termux-keyring"
TERMUX_PKG_SKIP_SRC_EXTRACT=true
TERMUX_PKG_PLATFORM_INDEPENDENT=true
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/etc/apt/sources.list.d
echo "deb https://packages.termux.org/apt/termux-unstable unstable main" > $TERMUX_PREFIX/etc/apt/sources.list.d/unstable.list
}
termux_step_create_debscripts() {
[ "$TERMUX_PACKAGE_FORMAT" = "pacman" ] && return 0
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
echo "echo Downloading updated package list ..." >> postinst
echo "apt update" >> postinst
echo "exit 0" >> postinst
}