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

26 lines
883 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := minizip
$(PKG)_WEBSITE := https://www.winimage.com/zLibDll/minizip.html
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2aa369c
$(PKG)_CHECKSUM := 165afc71c29863f41c4d1cf9d3a2b1333b863e3d66e5e05b9e1e41c5af8b8a44
$(PKG)_GH_CONF := nmoinvaz/minizip/branches/master
$(PKG)_DEPS := cc bzip2 zlib
define $(PKG)_BUILD
# build and install the library
cd '$(BUILD_DIR)' && $(TARGET)-cmake '$(SOURCE_DIR)' \
-DBUILD_TEST=OFF \
-DUSE_ZLIB=ON
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install
# compile test
'$(TARGET)-gcc' \
-W -Wall -Werror \
-DHAVE_STDINT_H -DHAVE_INTTYPES_H \
'$(SOURCE_DIR)/minizip.c' -o '$(PREFIX)/$(TARGET)/bin/test-$(PKG).exe' \
`'$(TARGET)-pkg-config' $(PKG) --libs-only-l`
endef