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

28 lines
1.0 KiB

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := lz4
$(PKG)_WEBSITE := https://github.com/$(PKG)/$(PKG)
$(PKG)_DESCR := lossless compression algorithm optimized for speed
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.8.0
$(PKG)_CHECKSUM := 2ca482ea7a9bb103603108b5a7510b7592b90158c151ff50a28f1ca8389fccf6
$(PKG)_GH_CONF := lz4/lz4/tags,v
$(PKG)_DEPS := cc
define $(PKG)_BUILD
# build and install the library
cd '$(BUILD_DIR)' && $(TARGET)-cmake \
-DCMAKE_INSTALL_BINDIR=$(BUILD_DIR)/null \
-DCMAKE_INSTALL_MANDIR=$(BUILD_DIR)/null \
'$(SOURCE_DIR)/contrib/cmake_unofficial'
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install
$(if $(BUILD_SHARED), $(INSTALL) '$(BUILD_DIR)/liblz4.dll' '$(PREFIX)/$(TARGET)/bin/')
# 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