net-im/matterbridge - 9999 (mva)

Search

Install

Install this version:

emerge -a =net-im/matterbridge-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =net-im/matterbridge-9999

Or alternatively:

emerge --autounmask-write -a =net-im/matterbridge-9999

Package Information

Description:
Bridge between multiple chat networks
Homepage:
https://github.com/42wim/matterbridge
License:
Apache-2.0

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License

EAPI=8

inherit go-module git-r3 systemd

EGIT_REPO_URI="github.com/42wim/matterbridge"

DESCRIPTION="Bridge between multiple chat networks"
HOMEPAGE="https://github.com/42wim/matterbridge"

LICENSE="Apache-2.0"
SLOT="0"

src_unpack() {
	default
	git-r3_src_unpack
	go-module_live_vendor
}

src_compile() {
	ego build -o "${PN}"
}

src_install() {
	default

	newinitd "${FILESDIR}/${PN}.initd" matterbridge
	systemd_dounit "${FILESDIR}/${PN}.service"
	dobin matterbridge
	# fowners matterbridge:matterbridge /usr/bin/matterbridge || die "fowners failed"
}

Inherited Eclasses