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
17 lines
616 B
BlitzBasic
17 lines
616 B
BlitzBasic
SUMMARY = "ssmping is a tool for checking whether one can receive SSM from a given host"
|
|
HOMEPAGE = "http://www.venaas.no/multicast/ssmping/"
|
|
SECTION = "net"
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://asmping.c;beginline=2;endline=11;md5=1ca8d1a1ca931e5cfe604ebf20a78b71"
|
|
|
|
SRC_URI = "${DEBIAN_MIRROR}/main/s/${BPN}/${BPN}_${PV}.orig.tar.gz;downloadfilename=${BP}.tar.gz \
|
|
file://0001-Makefile-tweak-install-dir.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "22103a37eaa28489169a0927bc01e0596c3485fc4d29fc8456c07fd2c70fca6d"
|
|
|
|
CFLAGS += "-D_GNU_SOURCE "
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install
|
|
}
|