Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
22 lines
697 B
BlitzBasic
22 lines
697 B
BlitzBasic
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "OpenWrt MDNS daemon"
|
|
HOMEPAGE = "http://git.openwrt.org/?p=project/mdnsd.git;a=summary"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://main.c;beginline=1;endline=12;md5=ce0be9da20a926574bf76c1285343bef"
|
|
SECTION = "base"
|
|
DEPENDS = "json-c libcap libubox ubus"
|
|
|
|
SRC_URI = "git://git.openwrt.org/project/mdnsd.git;protocol=https;branch=master \
|
|
"
|
|
SRCREV = "78aa36b0e9808e801c527c6dc47320e593309522"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake pkgconfig openwrt-services openwrt
|
|
|
|
TARGET_CFLAGS:append = " -Wno-error=array-bounds"
|
|
|
|
FILES:${PN} += "${libdir}/*"
|