summaryrefslogtreecommitdiffstats
path: root/recipes-support/softhsm/softhsm_git.bb
blob: 4dcfe7dbd3bea8683b4e2e112b457ddf2177161b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
SUMMARY = "HSM emulator"
HOMEPAGE = "https://www.opendnssec.org/softhsm/"
LICENSE = "BSD-2-Clause & ISC"
LIC_FILES_CHKSUM = "file://LICENSE;md5=ef3f77a3507c3d91e75b9f2bdaee4210"

DEPENDS = "openssl"

SRC_URI = "git://github.com/opendnssec/SoftHSMv2.git;branch=master"
SRCREV = "369df0383d101bc8952692c2a368ac8bc887d1b4"

PV = "2.5.0"

S = "${WORKDIR}/git"

inherit autotools pkgconfig

# EdDSA requires OpenSSL >= 1.1.1
EXTRA_OECONF = "--enable-eddsa --disable-gost"

do_configure_prepend() {
    (
        cd ${S}
        unset docdir
        sh ./autogen.sh
    )
}