Opensync: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
No edit summary
 
Line 10: Line 10:


=== Required ===
=== Required ===
* [[LibXML2]]
* [[LibXML2]]
* [[Glib2]]
* [[Glib2]]
Line 16: Line 15:


=== Optional ===
=== Optional ===
* [[Python]]
* [[Python]]
* [[SWIG]]
* [[SWIG]]
* [[Check]]
* [[Check]]
== Configuration Information ==


== Non-Multilib ==
== Non-Multilib ==
Line 28: Line 23:
Compile the package:
Compile the package:


  cmake -DCMAKE_INSTALL_PREFIX=/usr . &&
mkdir -v build &&
cd build &&
  cmake -DCMAKE_INSTALL_PREFIX=/usr \
    -DLIB_INSTALL_DIR=/usr/lib64 \
    -DCMAKE_BUILD_TYPE=Release \
    -DLIB_SUFFIX= \
    ..&&
  make
  make


Line 38: Line 39:


=== 32Bit ===
=== 32Bit ===
mkdir -v build &&
cd build &&
USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
cmake -DCMAKE_INSTALL_PREFIX=/usr \
    -DLIB_INSTALL_DIR=/usr/lib64 \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_FLAGS="${BUILD32}" \
    -DCMAKE_CXX_FLAGS="${BUILD32}" \
    -DLIB_SUFFIX= \
    .. &&
make
Install the Package
make install


=== N32 ===
=== N32 ===


=== 64Bit ===
=== 64Bit ===
mkdir -v build &&
cd build &&
USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
cmake -DCMAKE_INSTALL_PREFIX=/usr \
    -DLIB_INSTALL_DIR=/usr/lib64 \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_FLAGS="${BUILD64}" \
    -DCMAKE_CXX_FLAGS="${BUILD64}" \
    -DLIB_SUFFIX=64 \
    .. &&
make
Install the Package
make install


[[Category:General Utilities]]
[[Category:General Utilities]]

Latest revision as of 13:03, 13 September 2009

Download Source: http://www.opensync.org/download/releases/0.37/libopensync-0.37.tar.bz2

Introduction to Opensync

OpenSync is a synchronization framework that is platform and distribution independent. It consists of a powerful sync-engine and several plugins that can be used to connect to devices.

Project Homepage: http://www.opensync.org/

Dependencies

Required

Optional

Non-Multilib

Compile the package:

mkdir -v build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=/usr \
    -DLIB_INSTALL_DIR=/usr/lib64 \
    -DCMAKE_BUILD_TYPE=Release \
    -DLIB_SUFFIX= \
    ..&&
make

Install the package:

make install

Multilib

32Bit

mkdir -v build &&
cd build &&
USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
cmake -DCMAKE_INSTALL_PREFIX=/usr \
    -DLIB_INSTALL_DIR=/usr/lib64 \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_FLAGS="${BUILD32}" \
    -DCMAKE_CXX_FLAGS="${BUILD32}" \
    -DLIB_SUFFIX= \
    .. &&
make

Install the Package

make install

N32

64Bit

mkdir -v build &&
cd build &&
USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
cmake -DCMAKE_INSTALL_PREFIX=/usr \
    -DLIB_INSTALL_DIR=/usr/lib64 \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_FLAGS="${BUILD64}" \
    -DCMAKE_CXX_FLAGS="${BUILD64}" \
    -DLIB_SUFFIX=64 \
    .. &&
make

Install the Package

make install