blob: 6a5822999dad3904d8e2de9859b7dda05cbbe504 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
if [[ ${PV} == 9999 ]]; then
inherit golang-vcs
else
inherit golang-vcs-snapshot
SRC_URI="https://github.com/barnybug/cli53/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Command line tool for Amazon Route 53"
HOMEPAGE="https://github.com/barnybug/cli53"
LICENSE="MIT"
SLOT="0"
EGO_PN="github.com/barnybug/cli53"
S="${WORKDIR}/${P}/src/${EGO_PN}"
PATCHES=(
"${FILESDIR}"/cli53-ldflags.patch
)
src_compile() {
export GOPATH="${WORKDIR}/${P}"
if [[ ${PV} == 9999 ]]; then
emake build
else
emake build version=${PV}
fi
}
src_test() {
go test -v || die
}
src_install() {
dobin cli53
dodoc CHANGELOG.md README.md
}
|