From 3e50146f5e9567e2da2133121b25174900de7fb0 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Fri, 24 Mar 2023 12:45:00 -0400 Subject: [PATCH] Updatd README with RHEL installation instructions --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 4aa9a6c..ebe5a89 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,30 @@ The Bit Goblin video transcoder. +## Installing from RPM + +Installing from the Bit Goblin repository is easy! Add the following repo file to `/etc/yum.repos.d/bitgoblin.repo`: + +``` +[bitgoblin] +name=Bit Goblin repository +baseurl=http://repo.metaunix.net/dnf +enabled=1 +gpgcheck=0 +``` + +Update your package sources just to make sure all was added properly: + +``` +dnf updateinfo +``` + +Then install dragoon! Use the command below if you DON'T want DNF to install a bunch of unnecessary stuff to meet OpenJDK's weak dependencies; otherwise a regular `dnf install dragoon` is fine: + +``` +dnf --setopt=install_weak_deps=False --best install dragoon +``` + ## Building Currently this project is targeting Java 17 LTS and uses Maven to manage the software lifecycle. Thus, you must have a Java 17 JDK and Maven installed to build this project.