blob: 48241df0856c40488c4cf7a916548372b228f3fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
## Warning: unknown variable/routine "INHIBIT_AUTO_STAGE = "1""
## Reminder: Tabs should not be used (use spaces instead) in : install -d ${D}${bindir}
## Reminder: Tabs should not be used (use spaces instead) in : install -m 0755 ${WORKDIR}/${PN}-${PV}/wakelan ${D}${bindir}/wakelan
DESCRIPTION = "Wakelan sends a magic packet to wake up remote PC's"
MAINTAINER = "Oyvind Repvik <nail@nslu2-linux.org>"
LICENSE = "GPL"
PR = "r2"
SRC_URI = "http://www.ibiblio.org/pub/Linux/system/network/misc/${PN}-${PV}.tar.gz"
inherit autotools
do_install () {
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/${PN}-${PV}/wakelan ${D}${bindir}/wakelan
}
FILES = "${bindir}/wakelan"
INHIBIT_AUTO_STAGE = "1"
|