diff options
author | Adrian Jäkel <aj@elane2k.com> | 2018-03-27 16:50:31 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-04-07 05:00:17 (GMT) |
commit | cf98a16a87de2c202e130ccf4fcf8553260f5496 (patch) | |
tree | 46dd881631dbdea8aaecd71a9e98ada8e5002034 /src/xmlsec.mk | |
parent | 9afbe32022c39bab0c306668b0f9ab9c205e44b1 (diff) | |
download | mxe-cf98a16a87de2c202e130ccf4fcf8553260f5496.zip mxe-cf98a16a87de2c202e130ccf4fcf8553260f5496.tar.gz mxe-cf98a16a87de2c202e130ccf4fcf8553260f5496.tar.bz2 |
add package xmlsec
Diffstat (limited to 'src/xmlsec.mk')
-rw-r--r-- | src/xmlsec.mk | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/xmlsec.mk b/src/xmlsec.mk new file mode 100644 index 0000000..5b38656 --- /dev/null +++ b/src/xmlsec.mk @@ -0,0 +1,22 @@ +# This file is part of MXE. See LICENSE.md for licensing information. + +PKG := xmlsec +$(PKG)_WEBSITE := https://www.aleksey.com/xmlsec/ +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.2.25 +$(PKG)_CHECKSUM := 5a2d400043ac5b2aa84b66b6b000704f0f147077afc6546d73181f5c71019985 +$(PKG)_GH_CONF := lsh123/xmlsec/tags,xmlsec-,,,_ +$(PKG)_DEPS := cc libltdl libxml2 libxslt openssl gnutls + +define $(PKG)_BUILD + cd '$(SOURCE_DIR)' && autoreconf -fi + cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \ + $(MXE_CONFIGURE_OPTS) \ + --enable-docs=no \ + --enable-apps=no \ + --enable-shared=$(if $(BUILD_STATIC),no,yes) \ + --enable-static=$(if $(BUILD_STATIC),yes,no) + + $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' VERBOSE=1 $(MXE_DISABLE_CRUFT) + $(MAKE) -C '$(BUILD_DIR)' -j 1 install VERBOSE=1 $(MXE_DISABLE_CRUFT) +endef |