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-8.1 platform.
Download (HTTP): https://downloads.sourceforge.net/openobex/openobex-1.7.2-Source.tar.gz
Download MD5 sum: f6e0b6cb7dcfd731460a7e9a91429a3a
Download size: 128 KB
Estimated disk space required: 3.1 MB
Estimated build time: less than 0.1 SBU
Doxygen-1.8.13, libxslt-1.1.29, OpenJDK-1.8.0.141, and xmlto-0.0.28
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/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 && if [ -d /usr/share/doc/openobex ]; then mv -fv /usr/share/doc/{openobex,openobex-1.7.2} fi
-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 ...: Moves the documentation to a versioned directory, if it has been created.
Last updated on 2017-08-28 20:59:34 -0700