desktop/doc/building.rst

243 lines
9.5 KiB
ReStructuredText
Raw Normal View History

.. _building-label:
2015-08-31 08:48:43 +00:00
===============================
Appendix A: Building the Client
===============================
2012-10-31 13:44:18 +00:00
2014-06-25 20:04:33 +00: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 13:44:18 +00:00
2015-08-14 11:56:02 +00:00
.. note:: Build instructions are subject to change as development proceeds.
Please check the version for which you want to build.
The instructions contained in this topic were updated to work with version 1.7 of the ownCloud Client.
2012-10-31 13:44:18 +00:00
Linux
-----
1. Add the `ownCloud repository from OBS`_.
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 13:44:18 +00:00
2015-08-31 08:48:43 +00:00
3. Follow the :ref:`generic-build-instructions`.
2012-10-31 13:44:18 +00:00
4. (Optional) Call ``make install`` to install the client to the ``/usr/local/bin`` directory.
2012-10-31 13:44:18 +00:00
Mac OS X
--------
2014-06-25 20:04:33 +00:00
In additon to needing XCode (along with the command line tools), developing in
the Mac OS X environment requires extra dependencies. You can install these
2014-06-25 20:04:33 +00: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.
2014-06-25 20:04:33 +00: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 13:44:18 +00:00
2015-08-31 08:48:43 +00:00
To set up your build environment for development using HomeBrew_:
2014-06-25 20:04:33 +00:00
1. Add the ownCloud repository using the following command::
2012-10-31 14:19:00 +00:00
2014-10-27 18:53:12 +00:00
brew tap owncloud/owncloud
2012-10-31 14:19:00 +00:00
2014-06-25 20:04:33 +00:00
2. Install any missing dependencies::
2013-05-17 09:40:43 +00:00
2014-11-09 22:09:52 +00:00
brew install $(brew deps owncloud-client)
2013-05-17 09:40:43 +00: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.
2015-08-31 09:12:47 +00:00
5. For compilation of the client, follow the :ref:`generic-build-instructions`.
6. Install the Packages_ package creation tool.
7. 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 13:44:18 +00: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 13:44:18 +00:00
Windows Development Build
2012-10-31 13:44:18 +00: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 qtkeychain source
directories are 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 to let CMake find them together through PATH::
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 in parallel using
``cmake -G Ninja ../client`` and ``ninja`` instead.
.. note:: Refer to the :ref:`generic-build-instructions` section for additional options.
The ownCloud binary will appear in the ``bin`` directory.
Windows Installer Build (Cross-Compile)
2015-08-31 09:12:47 +00:00
---------------------------------------
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.
You can set up any currently supported version of openSUSE in a virtual machine if you do not
2014-06-25 20:04:33 +00:00
have it installed already.
In order to make setup simple, you can use the provided Dockerfile to build your own image.
2014-06-25 20:04:33 +00:00
1. Assuming you are in the root of the ownCloud Client's source tree, you can
build an image from this Dockerfile like this::
2014-06-25 20:04:33 +00:00
cd admin/win32/docker
docker build . -t ownCloud-client-win32:<version>
Replace ``<version>`` by the version of the client you are building, e.g.
|version| for the release of the client that this document describes.
If you do not wish to use docker, you can run the commands in ``RUN`` manually
in a shell, e.g. to create your own build environment in a virtual machine.
.. note:: Docker images are specific to releases. This one refers to |version|.
Newer releases may have different dependencies, and thus require a later
version of the docker image! Always pick the docker image fitting your release
of ownCloud client!
2012-10-31 13:44:18 +00:00
2. From within the source tree Run the docker instance::
2014-06-25 20:04:33 +00:00
docker run ownCloud-client-win32:<version> -v "$PWD:/home/jenkins/client" \
admin/win32/docker/build.sh $(id -u)
2012-10-31 13:44:18 +00:00
It will run the build, create an NSIS based installer, as well as run tests.
You will find the resulting binary in an newly created ``build-win32`` subfolder.
If you do not wish to use docker, and ran the ``RUN`` commands above in a virtual machine,
you can run the indented commands in the lower section of ``build.sh`` manually in your
source tree.
4. Finally, you should sign the installer to avoid warnings upon installation.
This requires a `Microsoft Authenticode`_ Certificate ``osslsigncode`` to sign the installer::
osslsigncode -pkcs12 $HOME/.codesign/packages.pfx -h sha1 \
-pass yourpass \
-n "ACME Client" \
-i "http://acme.com" \
-ts "http://timestamp.server/" \
-in ${unsigned_file} \
-out ${installer_file}
2014-10-27 18:53:12 +00:00
2015-08-14 11:56:02 +00:00
for ``-in``, use the URL to the time stamping server provided by your CA along with the Authenticode certificate. Alternatively,
you may use the official Microsoft ``signtool`` utility on Microsoft Windows.
If you're familiar with docker, you can use the version of ``osslsigncode`` that is part of the docker image.
2015-08-31 09:12:47 +00:00
.. _generic-build-instructions:
2015-08-31 08:48:43 +00:00
2012-10-31 13:44:18 +00:00
Generic Build Instructions
--------------------------
2012-10-31 14:19:00 +00: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-25 20:04:33 +00:00
You can download the desktop sync client from the ownCloud `Client Download Page`_.
2014-06-25 20:04:33 +00:00
To build the most up to date version of the client:
1. Clone the latest versions of the client from Git_ as follows::
2014-06-25 20:04:33 +00:00
git clone git://github.com/owncloud/client.git
git submodule init
git submodule update
2. Create the build directory::
mkdir client-build
cd client-build
2012-10-31 13:44:18 +00:00
3. Configure the client build::
2012-10-31 13:44:18 +00:00
cmake -DCMAKE_BUILD_TYPE="Debug" ../client
2012-10-31 13:44:18 +00: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 13:44:18 +00:00
2014-06-25 20:04:33 +00:00
4. Call ``make``.
The owncloud binary will appear in the ``bin`` directory.
2012-10-31 13:44:18 +00:00
2014-06-25 20:04:33 +00:00
The following are known cmake parameters:
2014-06-25 20:04:33 +00: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 18:53:12 +00: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-25 20:04:33 +00: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).
* ``CMAKE_INSTALL_PREFIX=path``: Set an install prefix. This is mandatory on Mac OS
2014-10-27 18:53:12 +00:00
.. _`ownCloud repository from OBS`: http://software.opensuse.org/download/package?project=isv:ownCloud:desktop&package=owncloud-client
.. _CMake: http://www.cmake.org/download
2012-10-31 13:44:18 +00: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/
.. _`OpenSSL Windows Build`: http://slproweb.com/products/Win32OpenSSL.html
.. _Qt: http://www.qt.io/download
.. _`Microsoft Authenticode`: https://msdn.microsoft.com/en-us/library/ie/ms537361%28v=vs.85%29.aspx
2014-10-27 18:53:12 +00:00
.. _QtKeychain: https://github.com/frankosterfeld/qtkeychain
.. _Packages: http://s.sudre.free.fr/Software/Packages/about.html