mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
28 lines
609 B
Bash
28 lines
609 B
Bash
# Copyright 2020-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module
|
|
|
|
DESCRIPTION="A little tool to send messages to an XMPP contact or MUC"
|
|
HOMEPAGE="https://salsa.debian.org/mdosch/go-sendxmpp"
|
|
SRC_URI="
|
|
https://salsa.debian.org/mdosch/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2
|
|
https://tastytea.de/files/gentoo/${P}-vendor.tar.xz
|
|
"
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
|
|
LICENSE="BSD-2 BSD MIT MIT-with-advertising"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
src_compile() {
|
|
ego build -buildmode=pie
|
|
}
|
|
|
|
src_install() {
|
|
dobin go-sendxmpp
|
|
default
|
|
}
|