blob: 9312445cea87d74a4ecb27c5e9ce2415c24c1e27 (
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
install: $(PKG)
cd $(PKG) && dpkg -i *.deb
|