mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-31 21:22:27 +00:00
4dfb21e313
This commit has been automatically submitted by Github Actions.
25 lines
702 B
Bash
25 lines
702 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/42wim/matterircd
|
|
TERMUX_PKG_DESCRIPTION="Connect to your mattermost or slack using your IRC-client of choice"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.28.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/42wim/matterircd/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=a23a1ac6a5dda8aa0a25261b6a5ce1084b63b626fe65cb94e8581c8bb0482c64
|
|
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
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t "${TERMUX_PREFIX}"/bin "$TERMUX_PKG_SRCDIR"/matterircd
|
|
}
|