27 lines
486 B
Bash
27 lines
486 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="Dracut OpenSSH integration"
|
|
HOMEPAGE="https://github.com/gsauthof/dracut-sshd"
|
|
EGIT_REPO_URI="https://github.com/gsauthof/dracut-sshd.git"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE=""
|
|
|
|
DEPEND="sys-kernel/dracut"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install () {
|
|
insinto /usr/lib/dracut/modules.d
|
|
doins -r 46sshd
|
|
|
|
dodoc -r README.md example
|
|
}
|