2013-09-03 14:34:29 +04:00
|
|
|
.. _building-label:
|
|
|
|
|
|
|
|
Appendix A: Building the Client
|
|
|
|
===============================
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
This section explains how to build the ownCloud Client from source for all
|
|
|
|
major platforms. You should read this section if you want to develop for the
|
|
|
|
desktop client.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
.. note:: Building instruction are subject to change as development proceeds.
|
2014-10-27 22:50:07 +03:00
|
|
|
Please check the version for which you want to build.
|
2013-11-06 14:13:55 +04:00
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
The instructions contained in this topic were updated to work with version 1.7 of the ownCloud Client.
|
2013-11-06 14:13:55 +04:00
|
|
|
|
2012-10-31 17:44:18 +04:00
|
|
|
Linux
|
|
|
|
-----
|
|
|
|
|
|
|
|
1. Add the `ownCloud repository from OBS`_.
|
2014-12-31 22:27:52 +03:00
|
|
|
2. Install the dependencies (as root, or using ``sudo``) using the following
|
|
|
|
commands for your specific Linux distribution:
|
|
|
|
|
|
|
|
* Debian/Ubuntu: ``apt-get update; apt-get build-dep owncloud-client``
|
|
|
|
* openSUSE: ``zypper ref; zypper si -d owncloud-client``
|
|
|
|
* Fedora/CentOS: ``yum install yum-utils; yum-builddep owncloud-client``
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2012-10-31 18:19:00 +04:00
|
|
|
3. Follow the `generic build instructions`_.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
4. (Optional) Call ``make install`` to install the client to the ``/usr/local/bin`` directory.
|
|
|
|
|
|
|
|
.. note:: This step requires the ``mingw32-cross-nsis`` packages be installed on
|
|
|
|
Windows.
|
|
|
|
|
2012-10-31 17:44:18 +04:00
|
|
|
Mac OS X
|
|
|
|
--------
|
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
In additon to needing XCode (along with the command line tools), developing in
|
2014-12-31 22:27:52 +03:00
|
|
|
the Mac OS X environment requires extra dependencies. You can install these
|
2014-06-26 00:04:33 +04:00
|
|
|
dependencies through MacPorts_ or Homebrew_. These dependencies are required
|
|
|
|
only on the build machine, because non-standard libs are deployed in the app
|
|
|
|
bundle.
|
2013-01-22 18:08:56 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
The tested and preferred way to develop in this environment is through the use
|
|
|
|
of HomeBrew_. The ownCloud team has its own repository containing non-standard
|
|
|
|
recipes.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
To set up your build enviroment for development using HomeBrew_:
|
|
|
|
|
|
|
|
1. Add the ownCloud repository using the following command::
|
2012-10-31 18:19:00 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
brew tap owncloud/owncloud
|
2012-10-31 18:19:00 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
2. Install any missing dependencies::
|
2013-05-17 13:40:43 +04:00
|
|
|
|
2014-11-10 01:09:52 +03:00
|
|
|
brew install $(brew deps owncloud-client)
|
2013-05-17 13:40:43 +04:00
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
3. Add Qt from brew to the path::
|
|
|
|
|
|
|
|
export PATH=/usr/local/Cellar/qt5/5.x.y/bin/qmake
|
|
|
|
|
|
|
|
Where ``x.z`` is the current version of Qt 5 that brew has installed
|
|
|
|
on your machine.
|
|
|
|
|
2014-11-10 01:09:52 +03:00
|
|
|
5. For compilation of the client, follow the `generic build instructions`_.
|
2014-10-27 22:50:07 +03:00
|
|
|
|
|
|
|
6. In the build directory, run ``admin/osx/create_mac.sh <build_dir>
|
|
|
|
<install_dir>``. If you have a developer signing certificate, you can specify
|
|
|
|
its Common Name as a third parameter (use quotes) to have the package
|
|
|
|
signed automatically.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
.. note:: Contrary to earlier versions, ownCloud 1.7 and later are packaged
|
|
|
|
as a ``pkg`` installer. Do not call "make package" at any time when
|
|
|
|
compiling for OS X, as this will build a disk image, and will not
|
|
|
|
work correctly.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2015-02-04 18:51:28 +03:00
|
|
|
Windows Development Build
|
2012-10-31 17:44:18 +04:00
|
|
|
-----------------------
|
|
|
|
|
2015-02-04 18:51:28 +03:00
|
|
|
If you want to test some changes and deploy them locally, you can build natively
|
|
|
|
on Windows using MinGW. If you want to generate an installer for deployment, please
|
|
|
|
follow `Windows Installer Build (Cross-Compile)`_ instead.
|
|
|
|
|
|
|
|
1. Get the required dependencies:
|
|
|
|
|
|
|
|
* Make sure that you have CMake_ and Git_.
|
|
|
|
* Download the Qt_ MinGW package. You will use the MinGW version bundled with it.
|
|
|
|
* Download an `OpenSSL Windows Build`_ (the non-"Light" version)
|
|
|
|
|
|
|
|
2. Get the QtKeychain_ sources as well as the latest versions of the ownCloud client
|
|
|
|
from Git as follows::
|
|
|
|
|
|
|
|
git clone https://github.com/frankosterfeld/qtkeychain.git
|
|
|
|
git clone git://github.com/owncloud/client.git
|
|
|
|
|
|
|
|
3. Open the Qt MinGW shortcut console from the Start Menu
|
|
|
|
|
|
|
|
4. Make sure that OpenSSL's ``bin`` directory, as well as your is in your PATH.
|
|
|
|
This will allow CMake to find the library and headers, as well as allow the
|
|
|
|
ownCloud client to find the DLLs at runtime::
|
|
|
|
|
|
|
|
set PATH=C:\<OpenSSL Install Dir>\bin;%PATH%
|
|
|
|
set PATH=C:\<qtkeychain Clone Dir>;%PATH%
|
|
|
|
|
|
|
|
5. Build qtkeychain directly in the source directory so that the DLL is built
|
|
|
|
in the same directory as the headers::
|
|
|
|
|
|
|
|
cd <qtkeychain Clone Dir>
|
|
|
|
cmake -G "MinGW Makefiles" .
|
|
|
|
mingw32-make
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
6. Create the build directory::
|
|
|
|
|
|
|
|
mkdir client-build
|
|
|
|
cd client-build
|
|
|
|
|
|
|
|
7. Build the client::
|
|
|
|
|
|
|
|
cmake -G "MinGW Makefiles" ../client
|
|
|
|
mingw32-make
|
|
|
|
|
|
|
|
.. note:: You can try using ninja to build parallelly using
|
|
|
|
``cmake -G Ninja ../client`` and ``ninja`` instead.
|
|
|
|
.. note:: Refer to the `generic build instructions`_ section for additional options.
|
|
|
|
|
|
|
|
The owncloud binary will appear in the ``bin`` directory.
|
|
|
|
|
|
|
|
Windows Installer Build (Cross-Compile)
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
Due to the large number of dependencies, building the client installer for Windows
|
|
|
|
is **currently only officially supported on openSUSE**, by using the MinGW cross compiler.
|
2014-06-26 00:04:33 +04:00
|
|
|
You can set up openSUSE 12.1, 12.2, or 13.1 in a virtual machine if you do not
|
|
|
|
have it installed already.
|
|
|
|
|
|
|
|
To cross-compile:
|
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
1. Add the following repositories using YaST or ``zypper ar`` (adjust when using openSUSE 12.2 or 13.1)::
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
zypper ar http://download.opensuse.org/repositories/windows:/mingw:/win32/openSUSE_13.1/windows:mingw:win32.repo
|
|
|
|
zypper ar http://download.opensuse.org/repositories/windows:/mingw/openSUSE_13.1/windows:mingw.repo
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
2. Install the cross-compiler packages and the cross-compiled dependencies::
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
zypper install cmake make mingw32-cross-binutils mingw32-cross-cpp mingw32-cross-gcc \
|
2013-04-26 19:02:55 +04:00
|
|
|
mingw32-cross-gcc-c++ mingw32-cross-pkg-config mingw32-filesystem \
|
2014-10-20 12:22:25 +04:00
|
|
|
mingw32-headers mingw32-runtime site-config mingw32-libqt4-sql \
|
|
|
|
mingw32-libqt4-sql-sqlite mingw32-sqlite mingw32-libsqlite-devel \
|
2013-11-25 15:50:12 +04:00
|
|
|
mingw32-dlfcn-devel mingw32-libssh2-devel kdewin-png2ico \
|
|
|
|
mingw32-libqt4 mingw32-libqt4-devel mingw32-libgcrypt \
|
2013-11-14 15:36:09 +04:00
|
|
|
mingw32-libgnutls mingw32-libneon-openssl mingw32-libneon-devel \
|
|
|
|
mingw32-libbeecrypt mingw32-libopenssl mingw32-openssl \
|
2014-10-20 12:22:25 +04:00
|
|
|
mingw32-libpng-devel mingw32-libsqlite mingw32-qtkeychain \
|
2013-11-14 15:36:09 +04:00
|
|
|
mingw32-qtkeychain-devel mingw32-dlfcn mingw32-libintl-devel \
|
|
|
|
mingw32-libneon-devel mingw32-libopenssl-devel mingw32-libproxy-devel \
|
2014-10-27 21:53:12 +03:00
|
|
|
mingw32-libxml2-devel mingw32-zlib-devel
|
2014-06-26 00:04:33 +04:00
|
|
|
|
|
|
|
3. For the installer, install the NSIS installer package::
|
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
zypper install mingw32-cross-nsis
|
2012-11-19 21:15:25 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
4. Install the following plugin::
|
2012-11-19 21:15:25 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
mingw32-cross-nsis-plugin-processes mingw32-cross-nsis-plugin-uac
|
2012-12-14 23:42:59 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
.. note:: This plugin is typically required. However, due to a current bug
|
|
|
|
in ``mingw``, the plugins do not currently build properly from source.
|
2012-12-14 23:42:59 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
5. Manually download and install the following files using ``rpm -ivh <package>``:
|
2012-12-14 23:42:59 +04:00
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
.. note:: These files also work for more recent openSUSE versions!
|
2012-12-14 23:42:59 +04:00
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
::
|
|
|
|
|
|
|
|
rpm -ivh http://download.tomahawk-player.org/packman/mingw:32/openSUSE_12.1/x86_64/mingw32-cross-nsis-plugin-processes-0-1.1.x86_64.rpm
|
|
|
|
rpm -ivh http://download.tomahawk-player.org/packman/mingw:32/openSUSE_12.1/x86_64/mingw32-cross-nsis-plugin-uac-0-3.1.x86_64.rpm
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
6. Follow the `generic build instructions`_
|
2012-11-21 17:57:04 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
.. note:: When building for Windows platforms, you must specify a special
|
|
|
|
toolchain file that enables cmake to locate the platform-specific tools. To add
|
|
|
|
this parameter to the call to cmake, enter
|
2014-11-10 01:09:52 +03:00
|
|
|
``-DCMAKE_TOOLCHAIN_FILE=../client/admin/win/Toolchain-mingw32-openSUSE.cmake``.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
7. Build by running ``make``.
|
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
.. note:: Using ``make package`` produces an NSIS-based installer, provided
|
2014-06-26 00:04:33 +04:00
|
|
|
the NSIS mingw32 packages are installed.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
.. _`generic build instructions`:
|
|
|
|
|
2012-10-31 17:44:18 +04:00
|
|
|
Generic Build Instructions
|
|
|
|
--------------------------
|
2012-10-31 18:19:00 +04:00
|
|
|
|
2015-01-30 20:14:42 +03:00
|
|
|
Compared to previous versions, building the desktop sync client has become easier. Unlike
|
|
|
|
earlier versions, CSync, which is the sync engine library of the client, is now
|
|
|
|
part of the client source repository and not a separate module.
|
2014-06-26 00:04:33 +04:00
|
|
|
|
2015-01-30 20:14:42 +03:00
|
|
|
You can download the desktop sync client from the ownCloud `Client Download Page`_.
|
2014-06-26 00:04:33 +04:00
|
|
|
|
|
|
|
To build the most up to date version of the client:
|
|
|
|
|
2015-01-30 20:14:42 +03:00
|
|
|
1. Clone the latest versions of the client from Git_ as follows:
|
2014-06-26 00:04:33 +04:00
|
|
|
|
2014-11-10 01:09:52 +03:00
|
|
|
``git clone git://github.com/owncloud/client.git``
|
2014-03-07 12:56:28 +04:00
|
|
|
|
2015-02-04 18:51:28 +03:00
|
|
|
2. Create the build directory:
|
2014-03-07 12:56:28 +04:00
|
|
|
|
2014-11-10 01:09:52 +03:00
|
|
|
``mkdir client-build``
|
2015-02-04 18:51:28 +03:00
|
|
|
``cd client-build``
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2015-02-04 18:51:28 +03:00
|
|
|
3. Configure the client build:
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-11-10 01:09:52 +03:00
|
|
|
``cmake -DCMAKE_BUILD_TYPE="Debug" ../client``
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-10-27 22:50:07 +03:00
|
|
|
..note:: You must use absolute paths for the ``include`` and ``library``
|
|
|
|
directories.
|
|
|
|
|
|
|
|
..note:: On Mac OS X, you need to specify ``-DCMAKE_INSTALL_PREFIX=target``,
|
|
|
|
where ``target`` is a private location, i.e. in parallel to your build
|
|
|
|
dir by specifying ``../install``.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
4. Call ``make``.
|
2014-03-07 12:56:28 +04:00
|
|
|
|
2015-02-04 18:51:28 +03:00
|
|
|
The owncloud binary will appear in the ``bin`` directory.
|
2012-10-31 17:44:18 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
The following are known cmake parameters:
|
2013-03-11 19:18:20 +04:00
|
|
|
|
2014-06-26 00:04:33 +04:00
|
|
|
* ``QTKEYCHAIN_LIBRARY=/path/to/qtkeychain.dylib -DQTKEYCHAIN_INCLUDE_DIR=/path/to/qtkeychain/``:
|
|
|
|
Used for stored credentials. When compiling with Qt5, the library is called ``qt5keychain.dylib.``
|
|
|
|
You need to compile QtKeychain with the same Qt version.
|
2014-10-27 21:53:12 +03:00
|
|
|
* ``WITH_DOC=TRUE``: Creates doc and manpages through running ``make``; also adds install statements,
|
|
|
|
providing the ability to install using ``make install``.
|
2014-06-26 00:04:33 +04:00
|
|
|
* ``CMAKE_PREFIX_PATH=/path/to/Qt5.2.0/5.2.0/yourarch/lib/cmake/``: Builds using Qt5.
|
|
|
|
* ``BUILD_WITH_QT4=ON``: Builds using Qt4 (even if Qt5 is found).
|
2014-10-27 22:50:07 +03:00
|
|
|
* ``CMAKE_INSTALL_PREFIX=path``: Set an install prefix. This is mandatory on Mac OS
|
2013-03-11 19:18:20 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
.. _`ownCloud repository from OBS`: http://software.opensuse.org/download/package?project=isv:ownCloud:desktop&package=owncloud-client
|
2015-02-04 18:51:28 +03:00
|
|
|
.. _CMake: http://www.cmake.org/download
|
2012-10-31 17:44:18 +04:00
|
|
|
.. _CSync: http://www.csync.org
|
|
|
|
.. _`Client Download Page`: http://owncloud.org/sync-clients/
|
|
|
|
.. _Git: http://git-scm.com
|
|
|
|
.. _MacPorts: http://www.macports.org
|
|
|
|
.. _Homebrew: http://mxcl.github.com/homebrew/
|
2015-02-04 18:51:28 +03:00
|
|
|
.. _`OpenSSL Windows Build`: http://slproweb.com/products/Win32OpenSSL.html
|
|
|
|
.. _Qt: http://www.qt.io/download
|
2014-10-27 21:53:12 +03:00
|
|
|
.. _QtKeychain: https://github.com/frankosterfeld/qtkeychain
|