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

20 lines
721 B
Bash
Raw Normal View History

2018-10-02 01:56:30 +02:00
TERMUX_PKG_HOMEPAGE=https://termux-x11.ml
2018-10-02 02:04:54 +02:00
TERMUX_PKG_DESCRIPTION="Package repository containing X11 programs and libraries"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com> @xeffyr"
TERMUX_PKG_VERSION=1.3
TERMUX_PKG_DEPENDS="termux-keyring"
2018-10-02 01:56:30 +02:00
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/etc/apt/sources.list.d
2019-01-28 17:41:48 +01:00
echo "deb https://dl.bintray.com/xeffyr/x11-packages x11 main" > $TERMUX_PREFIX/etc/apt/sources.list.d/x11.list
2018-10-02 01:56:30 +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
}