mxe/src/libplist.mk

19 lines
657 B
Makefile
Raw Permalink Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2015-08-22 18:29:31 +01:00
PKG := libplist
$(PKG)_WEBSITE := https://github.com/libimobiledevice/libplist
2015-08-22 18:29:31 +01:00
$(PKG)_IGNORE :=
2018-03-15 06:26:09 +00:00
$(PKG)_VERSION := 2.0.0
$(PKG)_CHECKSUM := 187eb8a7aca2d5abcdfd81c42ac12e67ebe49c434299df1881a942e64b7c7978
$(PKG)_GH_CONF := libimobiledevice/libplist/tags
$(PKG)_DEPS := cc libxml2
2015-08-22 18:29:31 +01:00
define $(PKG)_BUILD
2018-03-15 06:26:09 +00:00
cd '$(SOURCE_DIR)' && NOCONFIGURE=true $(SHELL) ./autogen.sh
cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \
2015-08-22 18:29:31 +01:00
$(MXE_CONFIGURE_OPTS) \
--without-cython
2018-03-15 06:26:09 +00:00
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install
2015-08-22 18:29:31 +01:00
endef