blob: 16aec239df13f3bc78b5121b60e50ecc3490ff59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/make
PV = 1.0.1e
PKG = openssl-$(PV)
SRC = http://download.strongswan.org/testing/openssl-fips/
all: install
$(PKG):
wget -r $(SRC) --no-directories --directory-prefix $(PKG) --accept deb --no-parent
install: $(PKG)
cd $(PKG) && dpkg -i *.deb
|