aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/libleak/libleak_git.bb
blob: b71111271015b9b0f942c473231962ca3b7cd4ca (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
# Copyright (C) 2021 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)

SUMMARY = "libleak detects memory leak by hooking memory functions (e.g. malloc) by LD_PRELOAD"
HOMEPAGE = "https://github.com/WuBingzheng/libleak"
LICENSE = "GPL-2.0"
LIC_FILES_CHKSUM = "file://README.md;beginline=18;endline=21;md5=de4f705f12cdedbe452b2c3524572b03"

DEPENDS += "libbacktrace"

SRC_URI = "gitsm://github.com/WuBingzheng/libleak;protocol=https \
           file://0001-respect-environment-variables.patch \
          "

PV = "1.0+git${SRCPV}"
SRCREV = "ea2bb608ae25701692269a37d39d77e966b887ac"

S = "${WORKDIR}/git"

do_configure () {
	:
}

do_compile () {
	oe_runmake
}

do_install () {
	install -Dm 0755 ${B}/libleak.so ${D}${libdir}/libleak.so
}

FILES_SOLIBSDEV = ""

FILES_${PN} += "${libdir}/libleak.so"