22 lines
671 B
Bash
22 lines
671 B
Bash
# Template file for 'gotify-cli'
|
|
pkgname=gotify-cli
|
|
version=2.2.1
|
|
revision=1
|
|
wrksrc="cli-$version"
|
|
build_style=go
|
|
go_import_path="github.com/gotify/cli/v2"
|
|
go_ldflags="-w -s -X main.Version=${version} \
|
|
-X main.BuildDate=${SOURCE_DATE_EPOCH} \
|
|
-X main.Mode=prod"
|
|
short_desc="Command line interface for pushing messages to a Gotify server"
|
|
maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
|
|
license="MIT"
|
|
homepage="https://gotify.net"
|
|
distfiles="https://github.com/gotify/cli/archive/v${version}.tar.gz"
|
|
checksum=9013f4afdcc717932e71ab217e09daf4c48e153b23454f5e732ad0f74a8c8979
|
|
|
|
post_install() {
|
|
mv ${DESTDIR}/usr/bin/cli ${DESTDIR}/usr/bin/gotify-cli
|
|
vlicense LICENSE
|
|
}
|