blob: ca6d885c923707a585098d8581fd1784600f1851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
USE_RUBY="ruby19 ruby20 ruby21"
inherit ruby-single
COMMIT="38745c9f91034d64aa182c1b3b20cb7ffb006f3e"
DESCRIPTION="Stores passwords in a set of encrypted files"
HOMEPAGE="http://github.com/formorer/pwstore"
SRC_URI="https://github.com/formorer/pwstore/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
S="${WORKDIR}/${PN}-${COMMIT}"
RDEPEND="app-crypt/gnupg ${RUBY_DEPS}"
DEPEND=""
src_install() {
dodoc README.asciidoc TODO
dobin pws
}
|