summaryrefslogtreecommitdiff
path: root/testing/scripts/recipes/011_openssl-fips.mk
blob: 5d28b181e7b47dd953469fa63bb413c6ff263801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/make

PV  = 2.0.3
PKG = openssl-fips-$(PV)
TAR = $(PKG).tar.gz
SRC = http://www.openssl.org/source/$(TAR)

all: install

$(TAR):
	wget $(SRC)

$(PKG): $(TAR)
	tar xfz $(TAR)

configure: $(PKG)
	cd $(PKG) && ./config

build: configure
	cd $(PKG) && make

install: build
	cd $(PKG) && make install