blob: 9e180ec0e9f31535c9012ae113f75c6887c43fe4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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
}
|