24 lines
404 B
Bash
24 lines
404 B
Bash
EAPI=8
|
|
|
|
inherit git-r3 rust-toolchain
|
|
|
|
DESCRIPTION="ACME client daemon writte in Rust"
|
|
HOMEPAGE="https://github.com/breard-r/acmed"
|
|
SRC_URI=""
|
|
|
|
EGIT_REPO_URI="https://github.com/breard-r/acmed.git"
|
|
|
|
RESTRICT="network-sandbox"
|
|
|
|
SLOT="0"
|
|
LICENSE="MIT"
|
|
KEYWORDS=""
|
|
RDEPEND="dev-libs/openssl"
|
|
DEPEND="${RDEPEND}
|
|
virtual/rust"
|
|
|
|
src_install() {
|
|
default_src_install
|
|
keepdir /var/lib/acmed/{accounts,certs}
|
|
}
|