1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-18 08:07:07 +00:00
termux-packages/packages/science-repo/build.sh
Henrik Grimler 77b74b05fd {root,game,science}-repo: use mirror instead of bintray
Use https://grimler.se directly since bintray repositories can no
longer be updated at the end of February, see
https://github.com/termux/termux-packages/issues/6348

Same change as already done for x11-repo and unstable-repo.
2021-02-07 13:50:06 +01:00

21 lines
745 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/termux/science-packages
TERMUX_PKG_DESCRIPTION="Package repository containing science software"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
TERMUX_PKG_VERSION=1.2
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://grimler.se/science-packages-24 science stable" > $TERMUX_PREFIX/etc/apt/sources.list.d/science.list
}
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
}