mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

This commit updates the container recipes to the OE core UNPACKDIR changes. - We drop references to WORKDIR - Drop S = assignemnts where possible Also note: openvswitch ptest is disabled as something in the source handling changes have broken it's install. We'll revisit this later. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
33 lines
716 B
BlitzBasic
33 lines
716 B
BlitzBasic
SUMMARY = "User-mode networking daemons for virtual machines and namespaces"
|
|
LICENSE = "GPL-2.0-or-later & BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSES/GPL-2.0-or-later.txt;md5=3d26203303a722dedc6bf909d95ba815 \
|
|
file://LICENSES/BSD-3-Clause.txt;md5=c6c623ff088c13278097b9f79637ca77"
|
|
|
|
DEPENDS += "coreutils-native"
|
|
|
|
EXTRA_OEMAKE += "\
|
|
'DESTDIR=${D}' \
|
|
'prefix=${prefix}' \
|
|
'bindir=${bindir}' \
|
|
'sharedir=${datadir}' \
|
|
'sysconfdir=${sysconfdir}' \
|
|
"
|
|
|
|
SRC_URI = "git://passt.top/passt;branch=master"
|
|
|
|
PV = "2025_03_20+git"
|
|
SRCREV = "cf4d3f05c9263d1b0a88dbbcf9e48d34cac6708e"
|
|
|
|
do_configure () {
|
|
:
|
|
}
|
|
|
|
do_compile () {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake install
|
|
}
|
|
|