24 lines
447 B
Bash
24 lines
447 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils git-r3
|
|
DESCRIPTION="Script to warn about expiring ssl certificates"
|
|
|
|
HOMEPAGE="https://github.com/raimue/ssl-cert-check"
|
|
|
|
EGIT_REPO_URI="https://github.com/raimue/ssl-cert-check.git"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="dev-libs/openssl"
|
|
|
|
LICENSE="BSD-2"
|
|
|
|
src_install() {
|
|
dosbin ssl-cert-check
|
|
dodoc README.md
|
|
}
|