mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
17
package/libcamera/Config.in
Normal file
17
package/libcamera/Config.in
Normal file
@@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_LIBCAMERA
|
||||
bool "libcamera"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
# C++11 + https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54316
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
||||
depends on BR2_PACKAGE_HAS_UDEV
|
||||
help
|
||||
libcamera provides a software stack to support
|
||||
complex devices that need heavy hardware image
|
||||
processing operations.
|
||||
|
||||
http://www.libcamera.org/
|
||||
|
||||
comment "libcamera needs udev and a toolchain w/ C++, threads, gcc >= 5"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || !BR2_PACKAGE_HAS_UDEV
|
||||
3
package/libcamera/libcamera.hash
Normal file
3
package/libcamera/libcamera.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
sha256 4073ee3429a28b19f65f1df107b87df9ee01e58dc3372fcc0fcafd3350a31c23 libcamera-caf25dc5cfd11b965316f02610d49ae3d886716b.tar.gz
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 licenses/gnu-gpl-2.0.txt
|
||||
sha256 592987e8510228d546540b84a22444bde98e48d03078d3b2eefcd889bec5ce8c licenses/gnu-lgpl-2.1.txt
|
||||
18
package/libcamera/libcamera.mk
Normal file
18
package/libcamera/libcamera.mk
Normal file
@@ -0,0 +1,18 @@
|
||||
################################################################################
|
||||
#
|
||||
# libcamera
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBCAMERA_SITE = https://git.linuxtv.org/libcamera.git
|
||||
LIBCAMERA_VERSION = caf25dc5cfd11b965316f02610d49ae3d886716b
|
||||
LIBCAMERA_SITE_METHOD = git
|
||||
LIBCAMERA_DEPENDENCIES = udev
|
||||
LIBCAMERA_CONF_OPTS = -Dtests=false -Ddocumentation=false
|
||||
LIBCAMERA_INSTALL_STAGING = yes
|
||||
LIBCAMERA_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (utils)
|
||||
LIBCAMERA_LICENSE_FILES = \
|
||||
licenses/gnu-gpl-2.0.txt \
|
||||
licenses/gnu-lgpl-2.1.txt
|
||||
|
||||
$(eval $(meson-package))
|
||||
Reference in New Issue
Block a user