mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-13 03:00:31 +00:00
4ea9468987
[no ci]
25 lines
534 B
Bash
25 lines
534 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/metafates/mangal
|
|
TERMUX_PKG_DESCRIPTION="Cli manga downloader"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="4.0.6"
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL=git+https://github.com/metafates/mangal
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_golang
|
|
|
|
go mod init || :
|
|
go mod tidy
|
|
}
|
|
|
|
termux_step_make() {
|
|
go build -o mangal
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t "${TERMUX_PREFIX}"/bin mangal
|
|
}
|