initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_JASPER
|
||||
bool "jasper"
|
||||
help
|
||||
JPEG-2000 decoder
|
||||
|
||||
http://www.ece.uvic.ca/~mdadams/jasper/
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 6b4e5f682be0ab1a5acb0eeb6bf41d6ce17a658bb8e2dbda95de40100939cc88 jasper-2.0.28.tar.gz
|
||||
sha256 4ad1bb42aff888c4403d792e6e2c5f1716d6c279fea70b296333c9d577d30b81 LICENSE
|
||||
@@ -0,0 +1,37 @@
|
||||
################################################################################
|
||||
#
|
||||
# jasper
|
||||
#
|
||||
################################################################################
|
||||
|
||||
JASPER_VERSION = 2.0.28
|
||||
JASPER_SITE = $(call github,jasper-software,jasper,version-$(JASPER_VERSION))
|
||||
JASPER_INSTALL_STAGING = YES
|
||||
JASPER_LICENSE = JasPer-2.0
|
||||
JASPER_LICENSE_FILES = LICENSE
|
||||
JASPER_CPE_ID_VENDOR = jasper_project
|
||||
JASPER_SUPPORTS_IN_SOURCE_BUILD = NO
|
||||
JASPER_CONF_OPTS = \
|
||||
-DCMAKE_DISABLE_FIND_PACKAGE_DOXYGEN=TRUE \
|
||||
-DCMAKE_DISABLE_FIND_PACKAGE_LATEX=TRUE
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
JASPER_CONF_OPTS += -DJAS_ENABLE_SHARED=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JPEG),y)
|
||||
JASPER_CONF_OPTS += -DJAS_ENABLE_LIBJPEG=ON
|
||||
JASPER_DEPENDENCIES += jpeg
|
||||
else
|
||||
JASPER_CONF_OPTS += -DJAS_ENABLE_LIBJPEG=OFF
|
||||
endif
|
||||
|
||||
JASPER_CFLAGS = $(TARGET_CFLAGS)
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y)
|
||||
JASPER_CFLAGS += -O0
|
||||
endif
|
||||
|
||||
JASPER_CONF_OPTS += -DCMAKE_C_FLAGS="$(JASPER_CFLAGS)"
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user