From 7a7eb588f54eaa72b6d500efb059a48cded8261f Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Mon, 2 Sep 2019 15:58:11 +0200 Subject: [PATCH] testing: Build current liboqs-master --- testing/scripts/recipes/011_liboqs.mk | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) 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 -- 2.47.2