blob: 6449c1eb113cc2dd7fb271aa24eeb420bdf2f725 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# openssl
PKG := openssl
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.0.0d
$(PKG)_CHECKSUM := 32ca934f380a547061ddab7221b1a34e4e07e8d5
$(PKG)_SUBDIR := openssl-$($(PKG)_VERSION)
$(PKG)_FILE := openssl-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://www.openssl.org/
$(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 \
no-shared \
no-capieng \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' install -j 1 \
CC='$(TARGET)-gcc' \
RANLIB='$(TARGET)-ranlib' \
AR='$(TARGET)-ar rcu'
endef
|