28f68ce5d8
bayer2rgb-neon[1] is a library which allows decoding raw camera bayer to RGB using NEON hardware acceleration. [1]: https://git.phytec.de/bayer2rgb-neon/ Signed-off-by: Eloi Bail <eloi.bail@savoirfairelinux.com> [Thomas: - use "config" instead of "menuconfig" - use BR2_ARM_CPU_HAS_NEON instead of BR2_ARM_ENABLE_NEON - use BR2_INSTALL_LIBSTDCPP instead of BR2_TOOLCHAIN_BUILDROOT_CXX - add dependency on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9, because the code is using C++11 - add missing Config.in comment - drop --prefix=/usr from CONF_OPTS, it is passed by the autotools-package infrastructure - simplify CFLAGS logic - move from "Applications" to "Libraries" in menuconfig - add missing .hash file - add entry in DEVELOPERS file] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
790 B
Makefile
25 lines
790 B
Makefile
################################################################################
|
|
#
|
|
# bayer2rgb-neon
|
|
#
|
|
################################################################################
|
|
|
|
BAYER2RGB_NEON_VERSION = v0.4
|
|
BAYER2RGB_NEON_SOURCE = bayer2rgb-neon-$(BAYER2RGB_NEON_VERSION).tar.bz2
|
|
BAYER2RGB_NEON_SITE = https://git.phytec.de/bayer2rgb-neon/snapshot
|
|
BAYER2RGB_NEON_LICENSE = GPL-3.0
|
|
BAYER2RGB_NEON_LICENSE_FILES = COPYING
|
|
BAYER2RGB_NEON_INSTALL_STAGING = YES
|
|
BAYER2RGB_NEON_DEPENDENCIES = host-pkgconf host-gengetopt
|
|
BAYER2RGB_NEON_AUTORECONF = YES
|
|
|
|
BAYER2RGB_NEON_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -mfpu=neon"
|
|
|
|
define BAYER2RGB_NEON_PRE_CONFIGURE_FIXUP
|
|
mkdir -p $(@D)/m4
|
|
endef
|
|
|
|
BAYER2RGB_NEON_PRE_CONFIGURE_HOOKS += BAYER2RGB_NEON_PRE_CONFIGURE_FIXUP
|
|
|
|
$(eval $(autotools-package))
|