# Copyright 2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit go-module DESCRIPTION="Generate vanity address for CryptoNote currency" HOMEPAGE="https://github.com/monero-ecosystem/vanity-monero" SRC_URI="https://github.com/monero-ecosystem/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz http://people.meleeweb.net/~beber/gentoo/vanity-monero-${PV}-deps.tar.xz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="" RDEPEND="${DEPEND}" BDEPEND="" src_compile() { ego build -o "${PN}" "${S}/cmd/${PN}" || die default } src_install() { dobin "${S}/${PN}" default }