# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit go-module

DESCRIPTION="Synchronization tool for IRC chat history"
HOMEPAGE="https://codeberg.org/emersion/chathistorysync"
# upstream provided things
SRC_URI="
	https://codeberg.org/emersion/chathistorysync/releases/download/v${PV}/${P}.tar.gz
	https://files.jacksonchen666.com/gentoo/${P}-vendor.tar.xz
"

LICENSE="
	AGPL-3
"
# dependencies
LICENSE+="
	BSD MIT
"
SLOT="0"
KEYWORDS="~amd64"

BDEPEND="
	app-text/scdoc
"

src_compile() {
	ego build
	emake "${PN}.1"
}

src_install() {
	dobin "${PN}"
	doman "${PN}.1"
}