Move all to deprecated folder.
This commit is contained in:
10
deprecated/firmware/buildroot/package/lcms2/Config.in
Normal file
10
deprecated/firmware/buildroot/package/lcms2/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_LCMS2
|
||||
bool "lcms2"
|
||||
help
|
||||
Little Color Management Software (CMS) intends to be an OPEN
|
||||
SOURCE small-footprint color management engine, with special
|
||||
focus on accuracy and performance.
|
||||
It uses the International Color Consortium standard (ICC), which is
|
||||
the modern standard when regarding to color management.
|
||||
|
||||
http://www.littlecms.com/
|
||||
5
deprecated/firmware/buildroot/package/lcms2/lcms2.hash
Normal file
5
deprecated/firmware/buildroot/package/lcms2/lcms2.hash
Normal file
@@ -0,0 +1,5 @@
|
||||
# From http://sourceforge.net/projects/lcms/files/lcms/2.7/
|
||||
sha1 625f0d74bad4a0f6f917120fd992437d26f754d2 lcms2-2.7.tar.gz
|
||||
md5 06c1626f625424a811fb4b5eb070839d lcms2-2.7.tar.gz
|
||||
# Locally computed:
|
||||
sha256 4524234ae7de185e6b6da5d31d6875085b2198bc63b1211f7dde6e2d197d6a53 lcms2-2.7.tar.gz
|
||||
36
deprecated/firmware/buildroot/package/lcms2/lcms2.mk
Normal file
36
deprecated/firmware/buildroot/package/lcms2/lcms2.mk
Normal file
@@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
#
|
||||
# lcms2
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LCMS2_VERSION = 2.7
|
||||
LCMS2_SITE = http://downloads.sourceforge.net/lcms/lcms
|
||||
LCMS2_LICENSE = MIT
|
||||
LCMS2_LICENSE_FILES = COPYING
|
||||
LCMS2_INSTALL_STAGING = YES
|
||||
|
||||
LCMS2_CONF_OPTS = \
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JPEG),y)
|
||||
LCMS2_CONF_OPTS += --with-jpeg
|
||||
LCMS2_DEPENDENCIES += jpeg
|
||||
else
|
||||
LCMS2_CONF_OPTS += --without-jpeg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TIFF),y)
|
||||
LCMS2_CONF_OPTS += --with-tiff
|
||||
LCMS2_DEPENDENCIES += tiff
|
||||
else
|
||||
LCMS2_CONF_OPTS += --without-tiff
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
LCMS2_CONF_OPTS += --with-zlib
|
||||
LCMS2_DEPENDENCIES += zlib
|
||||
else
|
||||
LCMS2_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user