blob: e99a38f396c7f65bbc43420649cc5e0a972352b2 (
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/"
DEPENDS = "sed-native"
SRC_URI = "http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.5.tar.gz"
S = "${WORKDIR}/gc6.5"
FILES_${PN}-doc += "/usr/share/gc/"
inherit autotools
do_configure_append() {
#fix libtool script
sed -i 's:${SED}:sed:g' libtool
sed -i 's:$SED:sed:g' libtool
}
do_stage() {
autotools_stage_includes
install -d ${STAGING_LIBDIR}
install -m 755 .libs/libgc.so* ${STAGING_LIBDIR}/
}
|