Files
bpfire/lfs/lcms2
Adolf Belka d5f617d057 lcms2: Update to version 2.16
- Update from version 2.14 to 2.16
- Update of rootfile
- Changelog
    2.16 Featured release
	New import .CUBE files as RGB devicelinks
	New Read/Write MHC2 tags for Windows GPU access
	New Support for UTF8 on multilocalized unicode functions
	New Suppot for OkLab color space, built-in and formatter.
	Improved floating point transforms float -> integer are now honored as float
	Improved MSYS2, mingw is now supported
	Improved proferred CMM, platform and creator now survives profile edition.
	Fixed tificc now can deal with Lab TIFF
	Fixed code can now be compiled by a C++17 compiler, "register" keywork use detected at compile time.
	Fixed Reverted postcript creation that corrupted some interpreters.
    2.15 Maintenance release
	New MESON build system, many thanks to amispark and Lovell Fuller for bringing this.
	Fixed a bug that caused memory corruption on colord
	cmsReadRawTag can read portions  of tags again. Removing this caused colord to segfault when dumping profiles
	Added more checks based of fuzzer discoveries.
	MSYS2 can now compile lcms2
	Checked on Apple Silicon M1 and M2
	Fixed a bug of fastfloat plug-in that affected Krita CMYK color selector

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
2023-12-30 07:33:44 +00:00

79 lines
3.2 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 2.16
THISAPP = lcms2-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = cf4d10908e6b8e6cf15ec8a99f0a299a9bcb7082f0df5ab1c9d84fcb739132855edf717c2ab746040fc09bace7afaaa8a39538e7ceabd0e68cdb3b4fb5627c6d
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
###############################################################################
# Downloading, checking, b2sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_BLAKE2,$(objects)) :
@$(B2SUM)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && ./configure --prefix=/usr --disable-static
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)