From 724cb48349d4b1acb0219e1d2fc0f6bf8a0d19da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tukusej=E2=80=99s=20Sirs?= Date: Fri, 21 Feb 2020 19:48:57 +0100 Subject: Update Compilation-guide-for_RHEL.md from Fedora point of view --- Compilation/Compilation-guide-for-RHEL.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Compilation/Compilation-guide-for-RHEL.md b/Compilation/Compilation-guide-for-RHEL.md index e5abd63..a78db27 100644 --- a/Compilation/Compilation-guide-for-RHEL.md +++ b/Compilation/Compilation-guide-for-RHEL.md @@ -61,6 +61,10 @@ if [ "$distro_name" = 'centos' ] && [ "$distro_version" = 8 ]; then # Disable okay repo for potential package conflicts sudo dnf config-manager --disable okay fi + +if [ "$distro_name" = 'fedora' ]; then + sudo dnf config-manager --enable fedora-cisco-openh264 +fi ``` **3.** Update `yum` cache and packages. This step might require a reboot. @@ -85,6 +89,12 @@ sudo yum -y install alsa-lib-devel atk-devel avahi-ui-gtk3 cairo-devel cmake3 \ if [ "$distro_name" = 'centos' ] && [ "$distro_version" = 8 ]; then sudo yum -y install --enablerepo=okay avahi-ui-devel openh264 libopenh264-devel libx264-devel fi + +# On Fedora +if [ "$distro_name" = 'fedora' ]; then + # TODO: Do we really need `libx264`? Or even `openh264` (that for CentOS too)? + sudo yum -y install avahi-ui-devel libx264 libx264-devel openh264 openh264-devel +fi ``` **5.** Clone FreeRDP and Remmina repos. You may want to modify the `${HOME}/{freerdp,remmina}` paths and the folder names. -- cgit v1.2.3