You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/lcms.mk

27 lines
1.0 KiB

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := lcms
$(PKG)_WEBSITE := http://www.littlecms.com/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.11
$(PKG)_CHECKSUM := dc49b9c8e4d7cdff376040571a722902b682a795bf92985a85b48854c270772e
$(PKG)_SUBDIR := $(PKG)$(word 1,$(subst ., ,$($(PKG)_VERSION)))-$(subst a,,$($(PKG)_VERSION))
$(PKG)_FILE := $(PKG)$(word 1,$(subst ., ,$($(PKG)_VERSION)))-$(subst a,,$($(PKG)_VERSION)).tar.gz
$(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$(subst a,,$($(PKG)_VERSION))/$($(PKG)_FILE)
$(PKG)_DEPS := cc jpeg tiff zlib
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://sourceforge.net/projects/lcms/files/lcms/' | \
$(SED) -n 's,.*/projects/.*/\([0-9][^"]*\)/".*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--with-jpeg \
--with-tiff \
--with-zlib
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS=
endef