summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Vacek <patrickvacek@gmail.com>2020-09-28 10:29:06 +0200
committerRicardo Salveti <ricardo@foundries.io>2020-10-30 21:15:21 -0300
commit0660f88d8c38ced2cb82f4b8d801a6386169a461 (patch)
treecfdfcb7e6b159a75c5107044c0ccf4c2e9f27664
parent456d7ff7ecac7d481c6ab6a390a8c7dc4b882a30 (diff)
downloadmeta-updater-0660f88d8c38ced2cb82f4b8d801a6386169a461.tar.gz
softhsm: remove since it was added to meta-openembedded last year.
It appears to be an almost straight copy of this recipe. Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
-rw-r--r--recipes-support/softhsm/softhsm_git.bb26
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes-support/softhsm/softhsm_git.bb b/recipes-support/softhsm/softhsm_git.bb
deleted file mode 100644
index 4dcfe7d..0000000
--- a/recipes-support/softhsm/softhsm_git.bb
+++ /dev/null
@@ -1,26 +0,0 @@
1SUMMARY = "HSM emulator"
2HOMEPAGE = "https://www.opendnssec.org/softhsm/"
3LICENSE = "BSD-2-Clause & ISC"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=ef3f77a3507c3d91e75b9f2bdaee4210"
5
6DEPENDS = "openssl"
7
8SRC_URI = "git://github.com/opendnssec/SoftHSMv2.git;branch=master"
9SRCREV = "369df0383d101bc8952692c2a368ac8bc887d1b4"
10
11PV = "2.5.0"
12
13S = "${WORKDIR}/git"
14
15inherit autotools pkgconfig
16
17# EdDSA requires OpenSSL >= 1.1.1
18EXTRA_OECONF = "--enable-eddsa --disable-gost"
19
20do_configure_prepend() {
21 (
22 cd ${S}
23 unset docdir
24 sh ./autogen.sh
25 )
26}