23 lines
461 B
Bash
23 lines
461 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Conformance testing tool for HTTP/2 implementation"
|
|
HOMEPAGE="https://github.com/summerwind/h2spec/"
|
|
SRC_URI="https://github.com/summerwind/h2spec/releases/download/v${PV}/h2spec_linux_amd64.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_install() {
|
|
dobin h2spec
|
|
}
|