blob: d2b94bfee43718f96d9914942ce6946a47cc7492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
DEPENDS = virtual/libc
RDEPENDS = libc6
SRC_URI = ${SOURCEFORGE_MIRROR}/openobex/${P}.tar.gz
inherit autotools libtool
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}/
}
|