mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
41 lines
884 B
Bash
41 lines
884 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
MY_PN="${PN/-/}-avh"
|
|
COMP_PN="${PN}-completion"
|
|
COMP_PV="0.5.2"
|
|
COMP_P="${COMP_PN}-${COMP_PV}"
|
|
inherit bash-completion-r1
|
|
|
|
DESCRIPTION="Git extensions to provide high-level repository operations"
|
|
HOMEPAGE="https://github.com/petervanderdoes/gitflow"
|
|
SRC_URI="https://github.com/petervanderdoes/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/petervanderdoes/${COMP_PN}/archive/${COMP_PV}.tar.gz -> ${COMP_P}.tar.gz"
|
|
|
|
LICENSE="BSD MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}
|
|
dev-vcs/git
|
|
"
|
|
|
|
DOCS=( AUTHORS Changes.mdown README.mdown )
|
|
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|
|
|
|
src_compile() {
|
|
true
|
|
}
|
|
|
|
src_install() {
|
|
emake prefix="${D}/usr" install
|
|
einstalldocs
|
|
newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN}
|
|
}
|