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

17 lines
549 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libsodium
$(PKG)_WEBSITE := https://download.libsodium.org/doc/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.0.17
$(PKG)_CHECKSUM := 0cc3dae33e642cc187b5ceb467e0ad0e1b51dcba577de1190e9ffa17766ac2b1
$(PKG)_GH_CONF := jedisct1/libsodium/releases
$(PKG)_DEPS := cc
define $(PKG)_BUILD
cd '$(BUILD_DIR)' && '$(SOURCE_DIR)/configure' \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install
endef