mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
This was prompted by sstatetests.SStateHashSameSigs2.test_sstate_allarch_samesigs where adwaita-icon-theme would fail due to new librsvg introducing cargo-c-native into dependency path. Rather than look into why is that, I simply converted the recipe into the standard 'target + BBCLASSEXTEND' approach. (From OE-Core rev: 80a2673a3081e623f30f25cc773ac9217e717958) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
572 B
BlitzBasic
19 lines
572 B
BlitzBasic
SUMMARY = "cargo applet to build and install C-ABI compatible dynamic and static libraries."
|
|
HOMEPAGE = "https://crates.io/crates/cargo-c"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://LICENSE;md5=384ed0e2e0b2dac094e51fbf93fdcbe0 \
|
|
"
|
|
|
|
SRC_URI = "crate://crates.io/cargo-c/${PV};name=cargo-c"
|
|
SRC_URI[cargo-c.sha256sum] = "5bfa9ba93806384d940e71dafbc185316e0a6a47561b33b7105fcf67f99df70a"
|
|
S = "${CARGO_VENDORING_DIRECTORY}/cargo-c-${PV}"
|
|
|
|
inherit cargo cargo-update-recipe-crates pkgconfig
|
|
|
|
DEPENDS = "openssl curl"
|
|
|
|
require ${BPN}-crates.inc
|
|
|
|
BBCLASSEXTEND = "native"
|