Mercurial > hg > mxe
view src/openssl.mk @ 3104:ff60fb78ca03
build shared openssl libraries
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 17 Dec 2012 16:27:40 -0500 |
parents | 4d0f3a9da57e |
children |
line wrap: on
line source
# This file is part of MXE. # See index.html for further information. PKG := openssl $(PKG)_IGNORE := $(PKG)_CHECKSUM := 91b684de947cb021ac61b8c51027cc4b63d894ce $(PKG)_SUBDIR := openssl-$($(PKG)_VERSION) $(PKG)_FILE := openssl-$($(PKG)_VERSION).tar.gz $(PKG)_URL := http://www.openssl.org/source/$($(PKG)_FILE) $(PKG)_URL_2 := ftp://ftp.openssl.org/source/$($(PKG)_FILE) $(PKG)_DEPS := gcc zlib libgcrypt define $(PKG)_UPDATE $(WGET) -q -O- 'http://www.openssl.org/source/' | \ $(SED) -n 's,.*openssl-\([0-9][0-9a-z.]*\)\.tar.*,\1,p' | \ grep -v '^0\.9\.' | \ head -1 endef define $(PKG)_BUILD cd '$(1)' && CC='$(TARGET)-gcc' ./Configure \ mingw \ zlib \ shared \ no-capieng \ --prefix='$(PREFIX)/$(TARGET)' $(MAKE) -C '$(1)' install -j 1 \ CC='$(TARGET)-gcc' \ RANLIB='$(TARGET)-ranlib' \ CROSS_COMPILE='$(TARGET)-' \ AR='$(TARGET)-ar rcu' endef