blob: d65adc91bc748ec8aa434cc21606c4ea88c608bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit linux-info systemd
DESCRIPTION="Utility for spinning down hard disks after a period of idle time"
HOMEPAGE="http://hd-idle.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
S="${WORKDIR}/${PN}"
CONFIG_CHECK="~PROC_FS"
DOCS=( debian/changelog README )
src_install() {
default
systemd_newunit "${FILESDIR}"/hd-idle-service ${PN}.service
newinitd "${FILESDIR}"/hd-idle-init hd-idle
newconfd "${FILESDIR}"/hd-idle-conf hd-idle
}
|