blob: 4a62ffc2d5122a3204d0f8af65ddfa64b0897688 (
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
|
LICENSE = "GPL"
DESCRIPTION = "Cellphone tools and driver software"
SRC_URI = "http://www.gnokii.org/download/gnokii/0.6.x/gnokii-${PV}.tar.bz2 \
file://configure.patch;patch=1"
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
DEPENDS = "xpm"
inherit autotools pkgconfig
PACKAGES += "libgnokii libgnokii-dev"
FILES_${PN} = "${bindir} ${sbindir}"
FILES_libgnokii-dev = "${includedir} ${libdir}/lib*.so ${libdir}/*.la \
${libdir}/*.a ${libdir}/*.o ${libdir}/pkgconfig \
/lib/*.a /lib/*.o ${datadir}/aclocal"
FILES_${PN}-dev = ""
FILES_libgnokii = "${libdir}/libgnokii.so.*"
do_stage() {
autotools_stage_includes
oe_libinstall -C common -so libgnokii ${STAGING_LIBDIR}
}
|