blob: 3a7c1d874349e892e52550e0e62ad9c4fb064b20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
LICENSE = "LGPL"
MAINTAINER = "Koen Kooi <koen@handhelds.org>"
DEPENDS = "glib-2.0 openobex dbus libxml2 osso-gwconnect"
SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/o/osso-gwobex/osso-gwobex_${PV}.tar.gz"
inherit autotools pkgconfig
do_stage() {
install -d ${STAGING_INCDIR}
install -d ${STAGING_LIBDIR}
install -m 644 src/*.h ${STAGING_INCDIR}
install -m 755 src/.libs/*.so* ${STAGING_LIBDIR}
}
|