diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-04-19 18:36:38 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-04-19 18:36:38 +0200 |
commit | b97dd59ba841442616960db11f4fc842af1d35e3 (patch) | |
tree | 7ae18abeee3eec566e71cbdb827c8296420e6b3d | |
parent | 545df30c1898fd5e2c66c22a8fb3c255eb319180 (diff) | |
download | strongswan-b97dd59ba841.tar.bz2 strongswan-b97dd59ba841.tar.xz |
install FIPS-aware OpenSSL Debian packages
-rw-r--r-- | testing/scripts/recipes/012_openssl.mk | 23 |
1 files changed, 5 insertions, 18 deletions
diff --git a/testing/scripts/recipes/012_openssl.mk b/testing/scripts/recipes/012_openssl.mk index 5fcb148e1..9312445ce 100644 --- a/testing/scripts/recipes/012_openssl.mk +++ b/testing/scripts/recipes/012_openssl.mk @@ -2,25 +2,12 @@ PV = 1.0.1e PKG = openssl-$(PV) -TAR = $(PKG).tar.gz -SRC = http://www.openssl.org/source/$(TAR) +SRC = http://download.strongswan.org/testing/openssl-fips/ -CONFIG_OPTS = \ - --prefix=/usr all: install -$(TAR): - wget $(SRC) - -$(PKG): $(TAR) - tar xfz $(TAR) - -configure: $(PKG) - cd $(PKG) && ./config fips shared $(CONFIG_OPTS) - -build: configure - cd $(PKG) && make - -install: build - cd $(PKG) && make install +$(PKG): + wget -r $(SRC) --no-directories --directory-prefix $(PKG) --accept deb +install: $(PKG) + cd $(PKG) && dpkg -i *.deb |