blob: 00a3bba5cbd852511b451fdfe7e6e15c8f6a7a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DEPENDS = virtual/libc
RDEPENDS = libc6
SRC_URI = ${SOURCEFORGE_MIRROR}/openobex/${P}.tar.gz
S = ${WORKDIR}/${P}
inherit autotools
EXTRA_OEMAKE =
do_stage () {
install -m 0755 src/.libs/libopenobex* ${STAGING_LIBDIR}/
install -d ${STAGING_DIR}/target/include/openobex
install -m 0644 src/obex_const.h src/obex.h ${STAGING_DIR}/target/include/openobex/
install -m 0755 openobex-config ${STAGING_BINDIR}/
}
|