blob: 34c81c749c1d57387f6ca08b1ee79978ff6cd8c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
LICENSE = "LGPL"
MAINTAINER = "Florian Boor <florian@kernelconcepts.de>"
PR = "r0"
DEPENDS = "libosso hildon-lgpl hildon-base-lib hildon-libs"
SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/libo/${PN}/libosso-help_${PV}.tar.gz \
file://no-Werror.patch;patch=1;pnum=0 \
file://help-header-pp.patch;patch=1;pnum=0"
inherit pkgconfig autotools
S = ${WORKDIR}/libosso-help-sdk-${PV}
#FILES_${PN} += "${libdir}/dbus-1.0/services/ ${libdir}/outo/*.so ${libdir}/outo/*bin ${libdir}/outo/mimedummy.doc"
do_stage() {
install -d ${STAGING_INCDIR}
install -m 644 helplib/*.h ${STAGING_INCDIR}
install -m644 helplib/.libs/libossohelp.so ${STAGING_LIBDIR}
install -m644 helplib/.libs/libossohelp.so.0 ${STAGING_LIBDIR}
install -m644 helplib/.libs/libossohelp.so.0.0.0 ${STAGING_LIBDIR}
}
|