diff options
author | 2016-11-05 14:31:24 +0100 | |
---|---|---|
committer | 2016-11-05 14:31:24 +0100 | |
commit | 1f78efc743b19b664aab206c4571479f6195f780 (patch) | |
tree | 2bc29da32baa3c7d11d73fa016e1086a2fe8d303 /dev-go/go-bindata/go-bindata-0_pre20151023.ebuild | |
parent | profiles: Mask net-print/foomatic-filters for removal (diff) | |
download | gentoo-1f78efc743b19b664aab206c4571479f6195f780.tar.gz gentoo-1f78efc743b19b664aab206c4571479f6195f780.tar.bz2 gentoo-1f78efc743b19b664aab206c4571479f6195f780.zip |
dev-go/go-bindata: Initial version
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-go/go-bindata/go-bindata-0_pre20151023.ebuild')
-rw-r--r-- | dev-go/go-bindata/go-bindata-0_pre20151023.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-go/go-bindata/go-bindata-0_pre20151023.ebuild b/dev-go/go-bindata/go-bindata-0_pre20151023.ebuild new file mode 100644 index 00000000000..1addee85ada --- /dev/null +++ b/dev-go/go-bindata/go-bindata-0_pre20151023.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit golang-build golang-vcs-snapshot + +EGO_PN="github.com/jteeuwen/go-bindata/..." +EGIT_COMMIT="a0ff2567cfb70903282db057e799fd826784d41d" +ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="A small utility which generates Go code from any file" +HOMEPAGE="https://github.com/jteeuwen/go-bindata" +SRC_URI="${ARCHIVE_URI}" +LICENSE="CC-PD" +SLOT="0/${PVR}" +IUSE="" + +src_install() { + golang-build_src_install + dobin bin/* +} |