mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
80c4c5c4ae
It has been changed to: http://www.kernel.org/pub/software/network/rfkill/ Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
28 lines
808 B
BlitzBasic
28 lines
808 B
BlitzBasic
SUMMARY = "rfkill CLI utility"
|
|
HOMEPAGE = "http://linuxwireless.org/en/users/Documentation/rfkill"
|
|
SECTION = "base"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c6036d0eb7edbfced28c4160e5d3fa94"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "http://www.kernel.org/pub/software/network/${BPN}/${BP}.tar.bz2 \
|
|
file://0001-rfkill-makefile-don-t-use-t-the-OE-install-wrapper-d.patch \
|
|
file://dont.call.git.rev-parse.on.parent.dir.patch"
|
|
|
|
SRC_URI[md5sum] = "727892c0fb35c80ee3849fbe89b45350"
|
|
SRC_URI[sha256sum] = "ca10e4827a5f0a36e093aee6ad81b5febf81f8097d7d858889ac51ff364168c1"
|
|
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
do_install() {
|
|
oe_runmake DESTDIR=${D} install
|
|
}
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_${PN} = "rfkill"
|
|
ALTERNATIVE_PRIORITY = "60"
|
|
ALTERNATIVE_LINK_NAME[rfkill] = "${sbindir}/rfkill"
|
|
|