0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-11 23:00:52 +00:00
Twaik Yont 151a3ebdb6 chore(main): force disable auto updates [no ci]
This is needed to avoid auto-updater script warnings.
2023-10-01 20:02:58 +03:00

18 lines
525 B
Bash

TERMUX_PKG_HOMEPAGE=https://termux.dev
TERMUX_PKG_DESCRIPTION="Contains LICENSE files for common licenses"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=2.0
TERMUX_PKG_REVISION=3
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_SKIP_SRC_EXTRACT=true
TERMUX_PKG_PLATFORM_INDEPENDENT=true
TERMUX_PKG_ESSENTIAL=true
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/share/LICENSES
for LICENSE in "$TERMUX_PKG_BUILDER_DIR/LICENSES/*.txt"; do
cp -f $LICENSE $TERMUX_PREFIX/share/LICENSES/
done
}