jellyfin/deployment/fedora-package-x64/pkg-src
Joshua Boniface 15b83f8b55 Clean up and fix Fedora/CentOS builds
This performs a lot of bugfixing and general cleanup to the
Fedora/CentOS builds, including moving the create_tarball into the
docker-build.sh script, remove some old long versions from the spec
file, correcting several bugs with the Docker environment including
splitting them into more discrete layers, and finally making sure
jellyfin-web is included properly in the RPM.
2019-09-25 14:45:15 -04:00
..
.gitignore Moved rpm package and edited the package slightly, to build the project correctly. 2019-01-11 23:22:50 +01:00
jellyfin-firewalld.xml Fixed csproj and xml identation. 2019-01-19 15:01:16 +01:00
jellyfin.env Finalise removal of --ffprobe switch 2019-03-12 22:09:18 +00:00
jellyfin.override.conf Moved rpm package and edited the package slightly, to build the project correctly. 2019-01-11 23:22:50 +01:00
jellyfin.service Finalise removal of --ffprobe switch 2019-03-12 22:09:18 +00:00
jellyfin.spec Clean up and fix Fedora/CentOS builds 2019-09-25 14:45:15 -04:00
jellyfin.sudoers Allow Fedora/CentOS mounting by default 2019-02-06 09:33:14 -05:00
README.md Moved rpm package and edited the package slightly, to build the project correctly. 2019-01-11 23:22:50 +01:00
restart.sh Merge branch 'master' into release-10.3.z 2019-07-06 23:08:52 +02:00

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.

# 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.

# 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