blob: e134f83622970b686810ce9ff3a24b8f65d1eb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "Garbage collector for C and C++"
LICENSE = "As is"
HOMEPAGE = "http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
SRC_URI = "http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-${PV}.tar.gz"
inherit autotools
S = "${WORKDIR}/gc-${PV}"
do_configure() {
gnu-configize
oe_runconf
}
LEAD_SONAME = "libgc.so.1"
FILES_${PN}-doc += "${datadir}/gc/"
SRC_URI[md5sum] = "2ff9924c7249ef7f736ecfe6f08f3f9b"
SRC_URI[sha256sum] = "e3cef6028fe3efe7de3bcf4107c880eae50b3ee79841450d885467c09bcebf30"
|