blob: 2a0c6dc2f7f1f65d9d41b834608ebe3128644609 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit git-r3
DESCRIPTION="Send notifications when SSL certificates are about to expire"
HOMEPAGE="https://github.com/Matty9191/ssl-cert-check"
EGIT_REPO_URI="https://github.com/Matty9191/ssl-cert-check.git"
EGIT_COMMIT="7e554814bc8d4048f75555f3a331df4e0506998c"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
app-shells/bash
dev-libs/openssl
"
src_install() {
dobin ssl-cert-check
dodoc README.md
}
|