File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / testing / scripts / recipes / 014_swid_generator.mk
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 3 09:46:49 2020 UTC (4 years, 3 months ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, v5_8_4p7, HEAD
Strongswan

#!/usr/bin/make

PKG = swidGenerator
ZIP = $(PKG)-master.zip
SRC = https://github.com/strongswan/$(PKG)/archive/master.zip

all: install

$(ZIP):
	wget --ca-directory="/usr/share/ca-certificates/mozilla" $(SRC) -O $(ZIP)

$(PKG)-master: $(ZIP)
	unzip $(ZIP)

install: $(PKG)-master
	cd $(PKG)-master && python setup.py install

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>