hashboot/hashboot-9999.ebuild

48 lines
680 B
Bash
Raw Normal View History

2015-09-26 00:19:06 +02:00
EAPI="4"
EGIT_REPO_URI="git://git.tastytea.de/repositories/hashboot.git"
inherit eutils git-2
DESCRIPTION="Check integrity of files in /boot"
HOMEPAGE="https://git.tastytea.de/?p=hashboot.git"
2015-10-03 20:25:14 +02:00
LICENSE="hug-ware"
2015-09-26 00:19:06 +02:00
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
sys-apps/coreutils
app-arch/tar
sys-apps/findutils
sys-apps/grep
virtual/awk
2015-09-30 02:13:16 +02:00
app-shells/bash
sys-apps/util-linux
2015-10-03 19:42:26 +02:00
app-arch/gzip
2015-09-26 00:19:06 +02:00
"
DEPEND="${RDEPEND}
"
PDEPEND="
"
src_unpack() {
git-2_src_unpack
}
src_prepare() {
mkdir init
mv initscript.openrc init/hashboot
2015-10-03 20:25:14 +02:00
mv LICENSE HUG-WARE
2015-09-26 00:19:06 +02:00
}
src_install() {
dodoc README
2015-10-03 20:25:14 +02:00
insinto /usr/portage/licenses
doins HUG-WARE
2015-10-03 23:08:50 +02:00
dobin hashboot
doinitd init/hashboot
}