mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-07 00:01:49 -04:00
14 lines
249 B
Makefile
14 lines
249 B
Makefile
#!/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
|