blob: bb5b8e34027ff4c28d34a1a48ddaed0300549c7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DEPENDS = virtual/libc openobex
RDEPENDS = libc6 libopenobex1
SRC_URI = ${SOURCEFORGE_MIRROR}/openobex/${P}.tar.gz
S = ${WORKDIR}/${P}
inherit autotools
EXTRA_OECONF = --disable-glibtest --with-glib-prefix=${STAGING_DIR}/target
export OPENOBEX_CFLAGS=-I${STAGING_DIR}/target/include
export OPENOBEX_CONFIG = ${STAGING_BINDIR}/openobex-config \
--prefix=${STAGING_DIR}/target \
--exec-prefix=${STAGING_DIR}/target
do_compile () {
oe_runmake 'INCLUDES='
}
|