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/libsigc++.mk

19 lines
620 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libsigc++
7 years ago
$(PKG)_WEBSITE := https://libsigc.sourceforge.io/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.4.0
$(PKG)_CHECKSUM := 7593d5fa9187bbad7c6868dce375ce3079a805f3f1e74236143bceb15a37cd30
$(PKG)_GH_CONF := libsigcplusplus/libsigcplusplus/tags
$(PKG)_DEPS := cc
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
CXX='$(TARGET)-g++' \
PKG_CONFIG='$(PREFIX)/bin/$(TARGET)-pkg-config' \
MAKE=$(MAKE)
$(MAKE) -C '$(1)' -j '$(JOBS)' install $(MXE_DISABLE_CRUFT)
endef