nemunaire-overlay/www-apps/eurocollec/eurocollec-9999.ebuild
Pierre-Olivier Mercier ffa1d28422 www-apps/eurocollec: new package
Package-Manager: Portage-2.3.51, Repoman-2.3.11
2019-02-19 16:18:33 +01:00

41 lines
794 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGO_PN=git.nemunai.re/eurocollec
if [[ ${PV} = *9999* ]]; then
inherit golang-vcs
else
KEYWORDS="~amd64 ~arm ~mips"
EGIT_COMMIT=v${PV}
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
inherit golang-vcs-snapshot
fi
inherit golang-build
DESCRIPTION="Explore your coins collection"
HOMEPAGE="https://eurocollec.p0m.fr"
LICENSE="AGPL-3"
SLOT="0"
IUSE=""
DEPEND="
dev-go/go-bindata
dev-go/httprouter
dev-go/mysql
"
RDEPEND="virtual/mysql"
src_prepare() {
cd "src/${EGO_PN}"
GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" go generate -v
default
}
src_install() {
dobin ${PN}
#dodoc src/${EGO_PN}/*.md
newinitd "${FILESDIR}"/${PN}.init ${PN}
}