Skip to content

Latest commit

 

History

History
80 lines (68 loc) · 2.37 KB

RPM.md

File metadata and controls

80 lines (68 loc) · 2.37 KB

sound Building RPMs

Build requirements

dnf install gcc gcc-c++ \
            libXtst-devel libXdamage-devel libxkbfile-devel \
            python3-devel python3-Cython \
            python3-gobject pygobject3-devel python3-cairo-devel \
            gtk3-devel gobject-introspection-devel \
            redhat-rpm-config \
            pandoc

You may also refer to the more generic list of dependencies

Extra dependencies

Vfb command

To use Xdummy:

dnf install xorg-x11-server-Xorg xorg-x11-drv-dummy xorg-x11-xauth xorg-x11-xkb-utils

Otherwise, use Xvfb:

dnf install xorg-x11-server-Xvfb
Video codecs

For video encoding support, install the private libraries and their development headers from from the xpra.org repositories:

dnf install ffmpeg-xpra-devel x264-xpra-devel

Building against the default (and often outdated) host libraries or using third-party repositories (EPEL, rpmfusion, etc) is not recommended and not supported.

OpenGL

For OpenGL accelerated client rendering support, add this runtime dependency:

dnf install python3-pyopengl

Build

python3 ./setup.py install --without-printing

When building against the private video codec libraries, you must point the compiler and linker to their location, ie:

for 64-bit builds
python3 ./setup.py install \
        --rpath=/usr/lib64/xpra --pkg-config-path=/usr/lib64/xpra/pkgconfig
        --without-html5 --without-printing

RPM

The spec file can be found here: https://github.com/Xpra-org/xpra/tree/master/packaging/rpm/xpra.spec

The quick and easy way:

mkdir -p ${HOME}/rpmbuild/SOURCES/ >& /dev/null
git clone https://github.com/Xpra-org/xpra
cd xpra
python3 ./setup.py sdist --formats=xz
cp dist/*xz ${HOME}/rpmbuild/SOURCES/
cp patches/* ${HOME}/rpmbuild/SOURCES/
rpmbuild -ba ./packaging/rpm/xpra.spec
ls -s ${HOME}/rpmbuild/RPMS/*/

This builds fresh packages from git master.
You can also use other branches, tags or download a source release instead.