From: Andreas Steffen Date: Fri, 19 Apr 2013 16:36:38 +0000 (+0200) Subject: install FIPS-aware OpenSSL Debian packages X-Git-Tag: 5.0.4~6 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=b97dd59ba841;p=thirdparty%2Fstrongswan.git install FIPS-aware OpenSSL Debian packages --- diff --git a/testing/scripts/recipes/012_openssl.mk b/testing/scripts/recipes/012_openssl.mk index 5fcb148e18..9312445cea 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