mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00
rpi-libcamera-apps: add new recipe
Signed-off-by: Devendra Tewari <devendra.tewari@gmail.com>
This commit is contained in:
parent
5edbd17c5b
commit
acb2f73e58
44
recipes-multimedia/libcamera-apps/rpi-libcamera-apps_git.bb
Normal file
44
recipes-multimedia/libcamera-apps/rpi-libcamera-apps_git.bb
Normal file
|
@ -0,0 +1,44 @@
|
|||
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 \
|
||||
"
|
||||
SRCREV = "22a52590c33a813743b4e6337478c208201c77b1"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
COMPATIBLE_MACHINE = "^rpi$"
|
||||
|
||||
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} \
|
||||
"
|
||||
|
||||
EXTRA_OECMAKE:append:raspberrypi3 = " -DENABLE_COMPILE_FLAGS_FOR_TARGET=armv8-neon"
|
||||
EXTRA_OECMAKE:append:raspberrypi4 = " -DENABLE_COMPILE_FLAGS_FOR_TARGET=armv8-neon"
|
||||
|
||||
PACKAGECONFIG[x11] = "-DENABLE_X11=1,-DENABLE_X11=0"
|
||||
PACKAGECONFIG[qt] = "-DENABLE_QT=1,-DENABLE_QT=0"
|
||||
PACKAGECONFIG[opencv] = "-DENABLE_OPENCV=1,-DENABLE_OPENCV=0"
|
||||
PACKAGECONFIG[tensorflow-lite] = "-DENABLE_TFLITE=1,-DENABLE_TFLITE=0"
|
||||
|
||||
# Build does not version solibs so we need to change the suffix
|
||||
SOLIBS = ".so"
|
||||
FILES_SOLIBSDEV = ""
|
||||
|
||||
do_install:append() {
|
||||
# Requires python3-core which not all systems may have
|
||||
rm ${D}/${bindir}/camera-bug-report
|
||||
}
|
Loading…
Reference in New Issue
Block a user