# This file is part of MXE. See LICENSE.md for licensing information. PKG := zstd $(PKG)_WEBSITE := https://github.com/facebook/zstd $(PKG)_DESCR := Zstandard is a fast lossless compression algorithm $(PKG)_IGNORE := $(PKG)_VERSION := 1.4.4 $(PKG)_CHECKSUM := a364f5162c7d1a455cc915e8e3cf5f4bd8b75d09bc0f53965b0c9ca1383c52c8 $(PKG)_GH_CONF := facebook/zstd/tags,v $(PKG)_DEPS := cc define $(PKG)_BUILD # build and install the library cd '$(BUILD_DIR)' && $(TARGET)-cmake '$(SOURCE_DIR)/build/cmake' \ -DZSTD_BUILD_STATIC=$(CMAKE_STATIC_BOOL) \ -DZSTD_BUILD_SHARED=$(CMAKE_SHARED_BOOL) \ -DZSTD_BUILD_PROGRAMS=OFF $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MAKE) -C '$(BUILD_DIR)' -j 1 install # compile test '$(TARGET)-gcc' \ -W -Wall -Werror -ansi -pedantic \ '$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-$(PKG).exe' \ `'$(TARGET)-pkg-config' lib$(PKG) --cflags --libs` endef