diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2020-09-28 10:29:06 +0200 |
---|---|---|
committer | Ricardo Salveti <ricardo@foundries.io> | 2020-10-30 21:15:21 -0300 |
commit | 0660f88d8c38ced2cb82f4b8d801a6386169a461 (patch) | |
tree | cfdfcb7e6b159a75c5107044c0ccf4c2e9f27664 | |
parent | 456d7ff7ecac7d481c6ab6a390a8c7dc4b882a30 (diff) | |
download | meta-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.bb | 26 |
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 @@ | |||
1 | SUMMARY = "HSM emulator" | ||
2 | HOMEPAGE = "https://www.opendnssec.org/softhsm/" | ||
3 | LICENSE = "BSD-2-Clause & ISC" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ef3f77a3507c3d91e75b9f2bdaee4210" | ||
5 | |||
6 | DEPENDS = "openssl" | ||
7 | |||
8 | SRC_URI = "git://github.com/opendnssec/SoftHSMv2.git;branch=master" | ||
9 | SRCREV = "369df0383d101bc8952692c2a368ac8bc887d1b4" | ||
10 | |||
11 | PV = "2.5.0" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit autotools pkgconfig | ||
16 | |||
17 | # EdDSA requires OpenSSL >= 1.1.1 | ||
18 | EXTRA_OECONF = "--enable-eddsa --disable-gost" | ||
19 | |||
20 | do_configure_prepend() { | ||
21 | ( | ||
22 | cd ${S} | ||
23 | unset docdir | ||
24 | sh ./autogen.sh | ||
25 | ) | ||
26 | } | ||