mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 22:13:34 +08:00
jasper: bump to version 2.0.10
Use upstream provided tarball. Upstream switched to cmake. libjpeg dependency is now optional. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
f13794a079
commit
015457a852
@ -1,6 +1,5 @@
|
||||
config BR2_PACKAGE_JASPER
|
||||
bool "jasper"
|
||||
select BR2_PACKAGE_JPEG
|
||||
help
|
||||
JPEG-2000 decoder
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 0099084dce9fa0a318b48a5ed2a12ac7cff3324f3fd4459833e6fe2ff583fb2c jasper-version-1.900.31.tar.gz
|
||||
sha256 54d85428e35263642358a11c312d61cbc054170546fae780e11271df5d1502e8 jasper-2.0.10.tar.gz
|
||||
|
@ -4,16 +4,22 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
JASPER_VERSION = version-1.900.31
|
||||
JASPER_SITE = $(call github,mdadams,jasper,$(JASPER_VERSION))
|
||||
JASPER_VERSION = 2.0.10
|
||||
JASPER_SITE = http://www.ece.uvic.ca/~frodo/jasper/software
|
||||
JASPER_INSTALL_STAGING = YES
|
||||
JASPER_DEPENDENCIES = jpeg
|
||||
JASPER_LICENSE = JasPer License Version 2.0
|
||||
JASPER_LICENSE_FILES = LICENSE
|
||||
JASPER_SUPPORTS_IN_SOURCE_BUILD = NO
|
||||
|
||||
# No configure script included. We need to generate it.
|
||||
JASPER_AUTORECONF = YES
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
JASPER_CONF_OPTS += -DJAS_ENABLE_SHARED=OFF
|
||||
endif
|
||||
|
||||
JASPER_CONF_OPTS = --disable-strict
|
||||
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 $(autotools-package))
|
||||
$(eval $(cmake-package))
|
||||
|
Loading…
Reference in New Issue
Block a user