28 lines
546 B
Bash
28 lines
546 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="A git remote helper for GPG-encrypted remotes"
|
|
HOMEPAGE="https://github.com/spwhitton/git-remote-gcrypt"
|
|
EGIT_REPO_URI="https://github.com/spwhitton/git-remote-gcrypt"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE=""
|
|
|
|
DEPEND="app-crypt/gnupg
|
|
net-misc/rsync
|
|
net-misc/curl"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
exeinto /usr/bin
|
|
doexe git-remote-gcrypt
|
|
dodoc debian/changelog COPYING README.rst
|
|
}
|