Changes between Version 7 and Version 8 of Building/RPM
- Timestamp:
- 11/10/20 05:06:31 (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building/RPM
v7 v8 16 16 For building you will need to install: 17 17 {{{ 18 yuminstall gcc gcc-c++ \18 dnf install gcc gcc-c++ \ 19 19 libXtst-devel libXdamage-devel libxkbfile-devel \ 20 20 python3-devel python3-Cython \ … … 22 22 gtk3-devel gobject-introspection-devel \ 23 23 redhat-rpm-config 24 yuminstall xorg-x11-server-Xorg xorg-x11-drv-dummy xorg-x11-xauth xorg-x11-xkb-utils24 dnf install xorg-x11-server-Xorg xorg-x11-drv-dummy xorg-x11-xauth xorg-x11-xkb-utils 25 25 }}} 26 26 Fedora and {{{RHEL7}}}/{{{CentOS7}}} users can install [http://www.cython.org/ Cython] via yum, the repositories include a more up to date version of Cython for all supported distributions. 27 27 {{{ 28 yum installCython28 dnf install python3-Cython 29 29 }}} 30 30 31 For picture andvideo encoding support, install the private libraries and their development headers from the [http://winswitch.org/downloads/rpm-repository.html repository]:31 For video encoding support, install the private libraries and their development headers from the [http://winswitch.org/downloads/rpm-repository.html repository]: 32 32 {{{ 33 yuminstall ffmpeg-xpra-devel x264-xpra-devel33 dnf install ffmpeg-xpra-devel x264-xpra-devel 34 34 }}} 35 35 Building against the default (and often outdated) host libraries or using third-party repositories (EPEL, rpmfusion, etc) is not recommended. … … 37 37 For {{{OpenGL}}} accelerated client rendering support, add this runtime dependency: 38 38 {{{ 39 yum install PyOpenGL PyOpenGL-accelerate 39 dnf install python3-pyopengl 40 40 }}} 41 41 }}}