0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-05 09:30:35 +00:00
Files
termux-packages/packages/tdl/build.sh
Termux Github Actions 6d65121f5d bump(main/tdl): 0.18.5
This commit has been automatically submitted by Github Actions.
2025-02-24 08:25:17 +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.18.5"
TERMUX_PKG_SRCURL=https://github.com/iyear/tdl/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=955f886ff980072d8ebe0a8c1d25bd67617cd9cacb0dfda84d28705132d2d72e
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
}