From: Andreas Steffen Date: Mon, 2 Sep 2019 13:58:11 +0000 (+0200) Subject: testing: Build current liboqs-master X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Fikev2-qske-intermediate;p=thirdparty%2Fstrongswan.git testing: Build current liboqs-master --- diff --git a/testing/scripts/recipes/011_liboqs.mk b/testing/scripts/recipes/011_liboqs.mk index 738e5029fa..37e531295a 100644 --- a/testing/scripts/recipes/011_liboqs.mk +++ b/testing/scripts/recipes/011_liboqs.mk @@ -1,21 +1,20 @@ #!/usr/bin/make PKG = liboqs -REV = nist-branch -ZIP = $(PKG)-$(REV).zip -SRC = https://github.com/open-quantum-safe/$(PKG)/archive/$(REV).zip +ZIP = $(PKG)-master.zip +SRC = https://github.com/open-quantum-safe/$(PKG)/archive/master.zip all: install $(ZIP): wget --ca-directory="/usr/share/ca-certificates/mozilla" $(SRC) -O $(ZIP) -$(PKG)-$(REV): $(ZIP) +$(PKG)-master: $(ZIP) unzip $(ZIP) -.$(PKG)-built-$(REV): $(PKG)-$(REV) - cd $(PKG)-$(REV) && make -j $(NUM_CPUS) +.$(PKG)-built: $(PKG)-master + cd $(PKG)-master && autoreconf -i && ./configure PREFIX=/usr && make -j $(NUM_CPUS) @touch $@ -install: .$(PKG)-built-$(REV) - cd $(PKG)-$(REV) && PREFIX=/usr make install +install: .$(PKG)-built + cd $(PKG)-master && make install