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/itk.mk

27 lines
1013 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := itk
$(PKG)_WEBSITE := https://www.itk.org/
$(PKG)_DESCR := Insight Segmentation and Registration Toolkit (ITK)
$(PKG)_IGNORE :=
$(PKG)_VERSION := 5.0.1
$(PKG)_CHECKSUM := c6b3c33ecc73104c906e0e1a1bfaa41a09af24bf53a4ec5e5c265d7e82bdf69f
$(PKG)_GH_CONF := InsightSoftwareConsortium/ITK/releases/latest, v
$(PKG)_DEPS := cc expat hdf5 jpeg libpng tiff zlib
define $(PKG)_BUILD
cd '$(BUILD_DIR)' && '$(TARGET)-cmake' '$(SOURCE_DIR)' \
-DCMAKE_VERBOSE_MAKEFILE=TRUE \
-DITK_FORBID_DOWNLOADS=TRUE \
-DBUILD_TESTING=FALSE \
-DBUILD_EXAMPLES=FALSE \
-DITK_USE_SYSTEM_EXPAT=TRUE \
-DITK_USE_SYSTEM_HDF5=TRUE \
-DITK_USE_SYSTEM_JPEG=TRUE \
-DITK_USE_SYSTEM_PNG=TRUE \
-DITK_USE_SYSTEM_TIFF=TRUE \
-DITK_USE_SYSTEM_ZLIB=TRUE
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' VERBOSE=1
$(MAKE) -C '$(BUILD_DIR)' -j 1 install VERBOSE=1
endef