Files
termux-packages/packages/tdl/build.sh
termux-pacman-bot 4c6d245cc7 bump(main/tdl): 0.17.3
This commit has been automatically submitted by Github Actions.
2024-07-07 12:44:23 +00:00

33 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://docs.iyear.me/tdl/
TERMUX_PKG_DESCRIPTION="Telegram downloader/tools written in Golang"
TERMUX_PKG_LICENSE="AGPL-V3"
TERMUX_PKG_LICENSE_FILE="LICENSE"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.17.3"
TERMUX_PKG_SRCURL=https://github.com/iyear/tdl/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=cfb3ac515370aa6494614bbf20eeda60d69a39ef8b9a3c0c7584b6163b9567c3
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
go build
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin tdl
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/bash-completion/completions/tdl
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/zsh/site-functions/_tdl
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/fish/vendor_completions.d/tdl.fish
}
termux_step_create_debscripts() {
cat <<-EOF >./postinst
#!${TERMUX_PREFIX}/bin/sh
tdl completion bash > "${TERMUX_PREFIX}/share/bash-completion/completions/tdl"
tdl completion zsh > "${TERMUX_PREFIX}/share/zsh/site-functions/_tdl"
tdl completion fish > "${TERMUX_PREFIX}/share/fish/vendor_completions.d/tdl.fish"
EOF
}