gentoo-overlay/net-im/teleirc/teleirc-2.3.0.ebuild

49 lines
1.2 KiB
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}"
BDEPEND=""
src_prepare() {
local PATCHES=(
"${FILESDIR}"/*.patch
)
default
sed -i -e "/\[Service\]/a NoExecPaths=/" \
-e "/\[Service\]/a ExecPaths=/usr/bin/teleirc ${prefix}/$(get_libdir)" \
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
newtmpfiles deployments/systemd/teleirc.tmpfiles teleirc.conf
insinto /etc/"${PN}"
newins env.example example
dobin ${PN}
default
}