15f2f58836
Changed _SITE to github, current version is not available from upstream website. Removed patches applied upstream: 0002-Fixed-bugs-due-to-uninitialized-data-in-the-JP2-deco.patche96fc4fdd5
0003-Added-a-check-in-the-JP2-encoder-to-ensure-that-the-.patch58ba0365d9
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
781 B
Makefile
29 lines
781 B
Makefile
################################################################################
|
|
#
|
|
# jasper
|
|
#
|
|
################################################################################
|
|
|
|
JASPER_VERSION = version-2.0.13
|
|
JASPER_SITE = $(call github,mdadams,jasper,$(JASPER_VERSION))
|
|
JASPER_INSTALL_STAGING = YES
|
|
JASPER_LICENSE = JasPer License Version 2.0
|
|
JASPER_LICENSE_FILES = LICENSE
|
|
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
|
|
|
|
$(eval $(cmake-package))
|