mxe/src/libgit2.mk

17 lines
644 B
Makefile
Raw Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2015-09-06 02:22:18 +01:00
PKG := libgit2
$(PKG)_WEBSITE := https://libgit2.github.com/
2015-09-06 02:22:18 +01:00
$(PKG)_IGNORE :=
2020-04-02 11:56:01 +01:00
$(PKG)_VERSION := 1.0.0
$(PKG)_CHECKSUM := 6a1fa16a7f6335ce8b2630fbdbb5e57c4027929ebc56fcd1ac55edb141b409b4
2018-03-15 03:07:18 +00:00
$(PKG)_GH_CONF := libgit2/libgit2/releases/latest,v
$(PKG)_DEPS := cc libssh2
2015-09-06 02:22:18 +01:00
define $(PKG)_BUILD
2018-03-15 03:07:18 +00:00
cd '$(BUILD_DIR)' && $(TARGET)-cmake '$(SOURCE_DIR)' \
-DDLLTOOL='$(PREFIX)/bin/$(TARGET)-dlltool'
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' VERBOSE=1 || $(MAKE) -C '$(BUILD_DIR)' -j 1 VERBOSE=1
$(MAKE) -C '$(BUILD_DIR)' -j 1 install VERBOSE=1
2015-09-06 02:22:18 +01:00
endef