blob: 0009990d79e7deb85904412d9d6aa7763b29f79c (
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
35
36
37
38
39
40
41
42
43
44
45
|
DESCRIPTION = "A library for loose coupling of C++ method calls"
SECTION = "libs"
PRIORITY = "optional"
PR = "r1"
LICENSE = "GPL LGPL"
SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.0/libsigc++-${PV}.tar.gz \
file://define_sigc_api.patch;patch=1"
S = "${WORKDIR}/libsigc++-${PV}"
inherit autotools pkgconfig
FILES_${PN}-dev += "${libdir}/sigc++-*/"
# acpaths = ""
do_stage() {
install -d ${STAGING_LIBDIR}/sigc++-2.0/include
install -m 0644 sigc++config.h ${STAGING_LIBDIR}/sigc++-2.0/include/
oe_libinstall -so -C sigc++ libsigc-2.0 ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/sigc++-2.0/sigc++
for f in sigc++/*.h
do
install -m 0644 $f ${STAGING_INCDIR}/sigc++-2.0/sigc++/
done
install -d ${STAGING_INCDIR}/sigc++-2.0/sigc++/functors
for f in sigc++/functors/*.h
do
install -m 0644 $f ${STAGING_INCDIR}/sigc++-2.0/sigc++/functors
done
install -d ${STAGING_INCDIR}/sigc++-2.0/sigc++/adaptors
for f in sigc++/adaptors/*.h
do
install -m 0644 $f ${STAGING_INCDIR}/sigc++-2.0/sigc++/adaptors
done
install -d ${STAGING_INCDIR}/sigc++-2.0/sigc++/adaptors/lambda
for f in sigc++/adaptors/lambda/*.h
do
install -m 0644 $f ${STAGING_INCDIR}/sigc++-2.0/sigc++/adaptors/lambda
done
}
|