# Copyright 2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit go-module DESCRIPTION="Your everyday IRC student" HOMEPAGE="https://git.sr.ht/~delthas/senpai" SNAPSHOT_COMMIT="dcaf0b6a39fb819923bb0ff94060dcbe8a863eb5" SRC_URI="https://git.sr.ht/~delthas/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz -> ${P}.tar.gz http://laumann.xyz/distfiles/${P}-deps.tar.xz" S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}" LICENSE="ISC MIT Apache-2.0 BSD" SLOT="0" KEYWORDS="" DEPEND="" RDEPEND="${DEPEND}" BDEPEND=" app-text/scdoc >=dev-lang/go-1.16 " src_unpack() { go-module_src_unpack } src_compile() { emake PREFIX="${EPREFIX}/usr" all } src_install() { emake PREFIX="${EPREFIX}/usr" DESTDIR="${ED}" install einstalldocs }