1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-22 00:57:06 +00:00

science-repo: add package

This commit is contained in:
Henrik Grimler 2019-02-03 19:16:55 +01:00 committed by Fredrik Fornwall
parent 672f19f09e
commit aea3dcf27b

View File

@ -0,0 +1,19 @@
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.0
TERMUX_PKG_DEPENDS="termux-keyring"
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/etc/apt/sources.list.d
echo "deb https://grimler.se 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
}