43 lines
972 B
Bash
43 lines
972 B
Bash
|
# Copyright 2024 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
inherit go-module systemd
|
||
|
|
||
|
DESCRIPTION="Go implementation of a Telegram <=> IRC bridge for use with any IRC channel and Telegram group"
|
||
|
HOMEPAGE="https://github.com/RITlug/teleirc"
|
||
|
SRC_URI="https://github.com/RITlug/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
||
|
https://git.millerson.name/alex/gentoo-artifacts/releases/download/${P}-vendor/${P}-vendor.tar.xz"
|
||
|
|
||
|
LICENSE="GPL-3.0"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="${DEPEND}
|
||
|
acct-user/teleirc"
|
||
|
BDEPEND=""
|
||
|
|
||
|
src_prepare() {
|
||
|
default
|
||
|
|
||
|
sed -i "s@/usr/local/bin/@/usr/bin/@" deployments/systemd/teleirc@.service || die
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
ego build -asmflags -trimpath \
|
||
|
-ldflags "-s -w -X main.version=${PV}" cmd/teleirc.go || die
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
systemd_dounit deployments/systemd/teleirc@.service
|
||
|
|
||
|
insinto /etc/"${PN}"
|
||
|
newins env.example example
|
||
|
|
||
|
dobin ${PN}
|
||
|
|
||
|
default
|
||
|
}
|