Files
meta-openembedded/meta-oe/recipes-extended/networking/mstpd_git.bb
T
Khem Raj ffc64e9c6f recipes: Start WORKDIR -> UNPACKDIR transition
Replace references of WORKDIR with UNPACKDIR where it makes sense to do
so in preparation for changing the default value of UNPACKDIR.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-05-23 08:44:44 -07:00

34 lines
950 B
BlitzBasic

LICENSE = "GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://LICENSE;md5=4325afd396febcb659c36b49533135d4"
PV = "0.1.0+git"
SRC_URI = " \
git://github.com/mstpd/mstpd;branch=master;protocol=https \
file://bridge-stp \
file://mstpd.service \
"
SRCREV = "181c453fc1a00573e19f14960dcc54ad84beea7c"
S = "${WORKDIR}/git"
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+){2,})"
inherit autotools pkgconfig systemd
PACKAGES =+ "${PN}-mstpd"
FILES:${PN}-mstpd = "${sbindir}/mstpd ${sbindir}/mstpctl ${sbindir}/bridge-stp"
SYSTEMD_PACKAGES = "${PN}-mstpd"
SYSTEMD_SERVICE:${PN}-mstpd = "mstpd.service"
do_install:append() {
rm -rf ${D}${libexecdir} ${D}${libdir}/NetworkManager
rmdir ${D}${libdir} || true
install -d -m 0755 ${D}${sbindir}
install -m 0755 ${UNPACKDIR}/bridge-stp ${D}${sbindir}
install -d -m 0755 ${D}${systemd_system_unitdir}
install -m 0644 ${UNPACKDIR}/mstpd.service ${D}${systemd_system_unitdir}
}