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

36 lines
1.3 KiB

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libharu
$(PKG)_WEBSITE := http://libharu.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.3.0
$(PKG)_CHECKSUM := 8f9e68cc5d5f7d53d1bc61a1ed876add1faf4f91070dbc360d8b259f46d9a4d2
$(PKG)_GH_CONF := libharu/libharu/tags,RELEASE_,,,_
$(PKG)_DEPS := cc libpng zlib
define $(PKG)_BUILD
cd '$(BUILD_DIR)' && '$(TARGET)-cmake' '$(SOURCE_DIR)' \
-DCMAKE_C_FLAGS=$(if $(BUILD_STATIC),,-DHPDF_DLL_MAKE) \
-DLIBHPDF_SHARED=$(CMAKE_SHARED_BOOL) \
-DLIBHPDF_STATIC=$(CMAKE_STATIC_BOOL) \
-DDEVPAK=ON
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' VERBOSE=1
$(MAKE) -C '$(BUILD_DIR)' -j 1 install VERBOSE=1
# create pkg-config files
$(INSTALL) -d '$(PREFIX)/$(TARGET)/lib/pkgconfig'
(echo 'Name: $(PKG)'; \
echo 'Version: $($(PKG)_VERSION)'; \
echo 'Description: open source library for generating PDF files'; \
echo 'Cflags: $(if $(BUILD_STATIC),,-DHPDF_DLL)'; \
echo 'Libs: $(if $(BUILD_STATIC),-lhpdfs,-lhpdf)'; \
echo 'Requires: libpng zlib';) \
> '$(PREFIX)/$(TARGET)/lib/pkgconfig/$(PKG).pc'
'$(TARGET)-gcc' \
-W -Wall -ansi \
'$(SOURCE_DIR)/demo/slide_show_demo.c' \
-o '$(PREFIX)/$(TARGET)/bin/test-$(PKG).exe' \
`'$(TARGET)-pkg-config' $(PKG) --cflags --libs`
endef