mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-01-12 03:10:08 +00:00
Bump libcamera to 3d9ac10 to get a fix for the current libcamera from
meta-openembedded/meta-multimedia for the following issue:
error: 'StreamRoles' in namespace 'libcamera' does not name a type; did you mean 'StreamRole'?
55 | using StreamRoles = libcamera::StreamRoles;
| ^~~~~~~~~~~
| StreamRole
Reported-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Vivien Didelot <vivien.didelot@gmail.com>
45 lines
1.5 KiB
BlitzBasic
45 lines
1.5 KiB
BlitzBasic
SUMMARY = "A suite of libcamera-based apps for the Raspberry Pi"
|
|
DESCRIPTION = "This is a small suite of libcamera-based apps that aim to \
|
|
copy the functionality of the existing \"raspicam\" apps."
|
|
HOMEPAGE = "https://github.com/raspberrypi/libcamera-apps"
|
|
SECTION = "console/utils"
|
|
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://license.txt;md5=a0013d1b383d72ba4bdc5b750e7d1d77"
|
|
|
|
SRC_URI = "\
|
|
git://github.com/raspberrypi/libcamera-apps.git;protocol=https;branch=main \
|
|
file://0001-utils-version.py-use-usr-bin-env-in-shebang.patch \
|
|
"
|
|
PV = "1.2.1+git${SRCPV}"
|
|
SRCREV = "3d9ac1087b3d6aa9cf3758c088414d7cf518c395"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "libcamera libexif jpeg tiff libpng boost"
|
|
|
|
inherit cmake pkgconfig
|
|
|
|
EXTRA_OECMAKE = "\
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBoost_INCLUDE_DIR=${STAGING_INCDIR} \
|
|
-DCMAKE_LIBRARY_PATH=${STAGING_LIBDIR} \
|
|
"
|
|
|
|
LIBCAMERA_ARCH = "${TARGET_ARCH}"
|
|
LIBCAMERA_ARCH:aarch64 = "arm64"
|
|
LIBCAMERA_ARCH:arm:raspberrypi3 = "armv8-neon"
|
|
LIBCAMERA_ARCH:arm:raspberrypi4 = "armv8-neon"
|
|
EXTRA_OECMAKE += "-DENABLE_COMPILE_FLAGS_FOR_TARGET=${LIBCAMERA_ARCH}"
|
|
|
|
PACKAGECONFIG[drm] = "-DENABLE_DRM=1,-DENABLE_DRM=0,libdrm"
|
|
PACKAGECONFIG[x11] = "-DENABLE_X11=1,-DENABLE_X11=0"
|
|
PACKAGECONFIG[qt] = "-DENABLE_QT=1,-DENABLE_QT=0"
|
|
PACKAGECONFIG[opencv] = "-DENABLE_OPENCV=1,-DENABLE_OPENCV=0,opencv"
|
|
PACKAGECONFIG[tflite] = "-DENABLE_TFLITE=1,-DENABLE_TFLITE=0,tensorflow-lite"
|
|
|
|
do_install:append() {
|
|
# Requires python3-core which not all systems may have
|
|
rm -v ${D}/${bindir}/camera-bug-report
|
|
}
|