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

41 lines
1.4 KiB

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := openssl
$(PKG)_IGNORE :=
8 years ago
$(PKG)_VERSION := 1.0.2i
$(PKG)_CHECKSUM := 9287487d11c9545b6efb287cdb70535d4e9b284dd10d51441d9b9963d000de6f
$(PKG)_SUBDIR := openssl-$($(PKG)_VERSION)
$(PKG)_FILE := openssl-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://www.openssl.org/source/$($(PKG)_FILE)
$(PKG)_URL_2 := http://www.openssl.org/source/old/$(call tr,$([a-z]),,$($(PKG)_VERSION))/$($(PKG)_FILE)
$(PKG)_DEPS := gcc libgcrypt zlib
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.openssl.org/source/' | \
$(SED) -n 's,.*openssl-\([0-9][0-9a-z.]*\)\.tar.*,\1,p' | \
$(SORT) -V | \
tail -1
endef
define $(PKG)_BUILD
cd '$(1)' && CC='$(TARGET)-gcc' ./Configure \
@openssl-target@ \
zlib \
$(if $(BUILD_STATIC),no-,)shared \
no-capieng \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' all install_sw -j 1 \
CC='$(TARGET)-gcc' \
RANLIB='$(TARGET)-ranlib' \
AR='$(TARGET)-ar rcu' \
CROSS_COMPILE='$(TARGET)-'
# no way to configure engines subdir install
$(if $(BUILD_SHARED),
rm -rf '$(PREFIX)/$(TARGET)/bin/engines' && \
mv -vf '$(PREFIX)/$(TARGET)/lib/engines' '$(PREFIX)/$(TARGET)/bin/')
endef
$(PKG)_BUILD_i686-w64-mingw32 = $(subst @openssl-target@,mingw,$($(PKG)_BUILD))
$(PKG)_BUILD_x86_64-w64-mingw32 = $(subst @openssl-target@,mingw64,$($(PKG)_BUILD))