summaryrefslogblamecommitdiff
path: root/app-crypt/vanity-monero/vanity-monero-0.2.9.ebuild
blob: 9e180ec0e9f31535c9012ae113f75c6887c43fe4 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                                  
      




                                                             
                                                                                       
                                                                                 










                   
                                                    








                          
# 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
}