wiki:jazz/ocsync

Version 6 (modified by jazz, 12 years ago) (diff)

--

Compile ocsync from source on Ubuntu 12.04

Setup Develop Environment

  • [Reference] http://gremu.net/blog/2010/building-csync-ubuntu-910/
    • resolving dependencies :
      • CMake
      • check
      • log4c
      • sqlite3
      • libiniparser
      • libsmbclient
      • libssh
    • jazz@precise:~$ sudo apt-get install build-essential cmake check liblog4c3 liblog4c-dev libsqlite3-0 libsqlite3-dev libsmbclient-dev doxygen libneon27-dev
      
    • installing libiniparser
      jazz@precise:~$ wget http://ndevilla.free.fr/iniparser/iniparser-3.1.tar.gz
      jazz@precise:~$ tar zxvf iniparser-3.1.tar.gz
      jazz@precise:~$ (cd iniparser/; make; sudo cp libiniparser.* /usr/lib)
      
  • We want to build Windows Client , so we will have to isntall 32/64 bits mingw-w64
    jazz@precise:~$ sudo apt-get install mingw-w64 mingw-w64-dev g++-mingw-w64 gcc-mingw-w64 
    

Download ocsync source tarball

  • [Source] http://owncloud.org/sync-clients/
    jazz@precise:~$ wget http://download.owncloud.com/download/ocsync-0.60.1.tar.bz2
    jazz@precise:~$ tar jxvf ocsync-0.60.1.tar.bz2
    jazz@precise:~$ cd ~/ocsync-0.60.1/build
    jazz@precise:~/ocsync-0.60.1/build$ cmake -DSQLITE3_INCLUDE_DIR=~/Toolchain-cross-mingw32-linux.cmake -DSQLITE3_INCLUDE_DIR=/usr/include -DSQLITE3_LIBRARY=/usr/lib -DINIPARSER_INCLUDE_DIRS=~/iniparser/src/ -DINIPARSER_LIBRARIES=/usr/lib ..