summaryrefslogtreecommitdiff
path: root/meta-google/recipes-extended/networking/sslh_git.bb
blob: 5a7a9b14e0ae7b2d2d1446be69c3330db4746986 (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
27
28
29
30
31
32
33
34
PR = "r1"
PV = "0.1+git${SRCPV}"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"

SRC_URI = "git://github.com/yrutschle/sslh"
SRCREV = "517e4ad5b4d57dae396790882bd4629947be1632"
S = "${WORKDIR}/git"

DEPENDS += "libbsd"
DEPENDS += "libcap"
DEPENDS += "libconfig"
DEPENDS += "systemd"
DEPENDS += "pcre"

EXTRA_OEMAKE += "DESTDIR=${D}"
EXTRA_OEMAKE += "PREFIX=${prefix}"
EXTRA_OEMAKE += "USELIBCAP=1"
EXTRA_OEMAKE += "USELIBBSD=1"
EXTRA_OEMAKE += "USESYSTEMD=1"

do_patch() {
  # Workaround timestamps of the source being later than the generated,
  # vendored output files. This non-determinism sometimes causes failures.
  sed -i '/conf2struct/d' ${S}/Makefile
}

do_compile() {
  oe_runmake
}

do_install() {
  oe_runmake install
}