aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/scsi-idle/scsi-idle_2.4.23.bb
blob: edee65a026053d933bfcb512c19c9392699f7243 (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
28
29
30
31
32
33
34
35
36
37
DESCRIPTION = "Description: turn off SCSI disks when idle \
This package contains small programs to start and stop SCSI disks and a \
daemon that spins down drives when idle. A kernel patch provided by the \
kernel-patch-scsi-idle package is required to send spin up/down \
commands to the SCSI hardware."
SECTION = "console/utils"
LICENSE = "GPLv2"
HOMEPAGE = "http://packages.debian.org/unstable/admin/scsi-idle"
AUTHOR = "Eduard Bloch <blade@debian.org>"
PR = "r1"

SRC_URI = "http://ftp.osuosl.org/pub/nslu2/sources/scsi-idle_${PV}-5.tar.gz \
	file://makefile.patch \
	file://scsi-idle.init.patch"

S = "${WORKDIR}/scsi-idle-${PV}"

inherit autotools

do_install() {
        install -d ${D}${sbindir} ${D}${mandir}/man8
        install -d ${D}${sysconfdir}/default
        install -d ${D}${sysconfdir}/init.d
        install -d ${D}${sysconfdir}/rcS.d

        install -m 0755 ${S}/scsi-idle	${D}${sbindir}
        install -m 0755 ${S}/scsi-start	${D}${sbindir}
	cd ${D}${sbindir} && ln -s scsi-start scsi-stop
        install -m 0644 ${S}/debian/scsi-idle.default	${D}${sysconfdir}/default/scsi-idle
        install -m 0755 ${S}/debian/scsi-idle.init	${D}${sysconfdir}/init.d/scsi-idle
	cd ${D}${sysconfdir}/rcS.d && ln -s ../init.d/scsi-idle S57scsi-idle
        install -m 0644 ${S}/scsi-idle.8		${D}${mandir}/man8
        install -m 0644 ${S}/scsi-start.8		${D}${mandir}/man8
}

SRC_URI[md5sum] = "86b310223642b6841c9e04ecd4d7fed8"
SRC_URI[sha256sum] = "6b53eb1645ac64667f0ee109b3456ba909b1c8bec432330a9d90e9a20980823b"