mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
29 lines
550 B
Bash
29 lines
550 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
COMMIT="8d854c2d78cb98afdb9f5a73240e06393260b327"
|
|
|
|
SRC_URI="https://github.com/jayphelps/git-blame-someone-else/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
DESCRIPTION="Blame someone else for your bad code."
|
|
HOMEPAGE="https://github.com/jayphelps/git-blame-someone-else"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
dev-vcs/git
|
|
"
|
|
DEPEND=""
|
|
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
src_install() {
|
|
dobin "${PN}"
|
|
einstalldocs
|
|
}
|