aboutsummaryrefslogtreecommitdiff
path: root/rpm-package/README.md
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-11 23:12:19 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-11 23:12:19 +0100
commit94933722c49737bc76e2e1fc49d8a2bc25bf0acb (patch)
tree89907ddfbac16f19120a2b87e3bd8d98eef87531 /rpm-package/README.md
parent399a079dd472a0ad424884eb48a0d9e471a95c70 (diff)
parent3f9b0058857149a1c299b65117e13ea82b2bc1e8 (diff)
Merge branch 'rpm-package' into build-system-consolidation
Diffstat (limited to 'rpm-package/README.md')
-rw-r--r--rpm-package/README.md43
1 files changed, 43 insertions, 0 deletions
diff --git a/rpm-package/README.md b/rpm-package/README.md
new file mode 100644
index 000000000..7ed6f7efc
--- /dev/null
+++ b/rpm-package/README.md
@@ -0,0 +1,43 @@
+# Jellyfin RPM
+
+## Build Fedora Package with docker
+
+Change into this directory `cd rpm-package`
+Run the build script `./build-fedora-rpm.sh`.
+Resulting RPM and src.rpm will be in `../../jellyfin-*.rpm`
+
+## ffmpeg
+
+The RPM package for Fedora/CentOS requires some additional repositories as ffmpeg is not in the main repositories.
+
+```shell
+# ffmpeg from RPMfusion free
+# Fedora
+$ sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
+# CentOS 7
+$ sudo yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
+```
+
+## ISO mounting
+
+To allow Jellyfin to mount/umount ISO files uncomment these two lines in `/etc/sudoers.d/jellyfin-sudoers`
+```
+# %jellyfin ALL=(ALL) NOPASSWD: /bin/mount
+# %jellyfin ALL=(ALL) NOPASSWD: /bin/umount
+```
+
+## Building with dotnet
+
+Jellyfin is build with `--self-contained` so no dotnet required for runtime.
+
+```shell
+# dotnet required for building the RPM
+# Fedora
+$ sudo dnf copr enable @dotnet-sig/dotnet
+# CentOS
+$ sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm
+```
+
+## TODO
+
+- [ ] OpenSUSE \ No newline at end of file