sys-block/raid-check - 20140719-r1 (gentoo)

Search

Install

Install this version:

emerge -a =sys-block/raid-check-20140719-r1

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-block/raid-check-20140719-r1

Or alternatively:

emerge --autounmask-write -a =sys-block/raid-check-20140719-r1

Package Information

Description:
Script to do \"scrubbing\" on software RAID systems
Homepage:
https://github.com/fukawi2/raid-check
License:
GPL-2

Ebuild Details

Version EAPI Keywords Slot
20140719-r1 8 amd64 0
View Raw Ebuild
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="Script to do \"scrubbing\" on software RAID systems"
HOMEPAGE="https://github.com/fukawi2/raid-check"
SRC_URI="mirror://gentoo/${P}.tar.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64"

PATCHES=(
	"${FILESDIR}"/${P}-makefile.patch
	"${FILESDIR}"/${P}-path.patch
)

src_compile() { :; }

src_test() {
	emake test
}

src_install() {
	emake DESTDIR="${D}" D_BIN=/usr/sbin install
}