blob: 57fb38cf6e73dc5bf4f0c4b80dcae7231f9f93ed (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils prefix
DESCRIPTION="Password generator capable of generating pronounceable and/or secure passwords"
HOMEPAGE="https://github.com/mackers/passook"
# snapshot of git://github.com/mackers/passook.git
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
RDEPEND="dev-lang/perl
sys-apps/miscfiles"
S="${WORKDIR}/${PN}"
src_prepare() {
epatch "${FILESDIR}"/passook.patch
eprefixify passook
}
src_install() {
dobin passook
dodoc README passook.cgi
}
|