OpenOBEX-1.7.2

Introduction to OpenOBEX

The OpenOBEX package contains a library that implements Object Exchange Protocol used for binary file transfers between devices.

This package is known to build and work properly using an LFS-7.10 platform.

Package Information

OpenOBEX Dependencies

Required

CMake-3.6.1 and libusb-1.0.20

Recommended

Optional

Doxygen-1.8.11, libxslt-1.1.29, OpenJDK-1.8.0.102, and xmlto-0.0.28

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/openobex

Installation of OpenOBEX

OpenOBEX installs a udev rule that requires a group named plugdev. Create that group as the root user:

groupadd -g 90 plugdev

Install OpenOBEX by running the following commands:

mkdir build &&
cd    build &&

cmake -DCMAKE_INSTALL_PREFIX=/usr      \
      -DCMAKE_INSTALL_LIBDIR=/usr/lib  \
      -DCMAKE_BUILD_TYPE=Release       \
      -Wno-dev                         \
      .. &&
make

This package does not come with a test suite.

Now, as the root user:

make install &&
mv -fv /usr/share/doc/{openobex,openobex-1.7.2}

Command Explanations

-DCMAKE_BUILD_TYPE=Release: This switch is used to apply higher level of the compiler optimizations.

-Wno-dev: This switch is used to suppress warnings that are meant for the author of the CMakeLists.txt files.

mv -fv ...: Move the documention to a versioned directory.

Contents

Installed Program: obex-check-device
Installed Library: libopenobex.so
Installed Directory: /usr/include/openobex, /usr/lib/cmake/OpenObex-1.7.1, and /usr/share/doc/openobex-1.7.1

Short Descriptions

obex-check-device

is a tool that helps udev find connectable OBEX USB devices.

libopenobex.so

contains the OpenOBEX API functions.

Last updated on 2016-08-29 23:02:26 -0700