Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arch linux package now in extra #675

Merged
merged 6 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/general/installation/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ To enable the web UI after installing `jellyfin-web`, make sure to remove the `-

## Arch Linux

Jellyfin can be found in the AUR as [`jellyfin`](https://aur.archlinux.org/packages/jellyfin/), [`jellyfin-bin`](https://aur.archlinux.org/packages/jellyfin-bin/) and [`jellyfin-git`](https://aur.archlinux.org/packages/jellyfin-git/).
The `Extra` repository contains builds for both [`jellyfin-server`](https://archlinux.org/packages/?name=jellyfin-server) and [`jellyfin-web`](https://archlinux.org/packages/?name=jellyfin-web).
`jellyfin-server` includes a hard dependency on [`jellyfin-ffmpeg`](https://archlinux.org/packages/?name=jellyfin-ffmpeg).

Both packages, server and web, can also be built from source at the tip of the master branch using [`jellyfin-git`](https://aur.archlinux.org/packages/jellyfin-git/).
The AUR also offers each separately at [`jellyfin-server-git`](https://aur.archlinux.org/packages/jellyfin-server-git/) and [`jellyfin-web-git`](https://aur.archlinux.org/packages/jellyfin-web-git/).

## Fedora

Expand Down
18 changes: 5 additions & 13 deletions src/data/downloads.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,23 +191,15 @@ sudo apt install jellyfin`}
id: 'arch',
name: 'Arch Linux',
osTypes: [OsType.Linux],
status: DownloadStatus.Community,
status: DownloadStatus.Official,
features: [Feature.CustomFFmpeg],
platforms: [Platform.Arch],
description: 'Install Jellyfin via the Arch User Repository.',
description: 'Install Jellyfin via Arch-Extra Repository.',
stableButtons: [
{
id: 'arch-stable-button',
name: 'Install Instructions',
details: (
<pre className='margin-bottom--none'>
<code>
{`git clone https://aur.archlinux.org/jellyfin.git
cd jellyfin
makepkg -si`}
</code>
</pre>
)
id: 'arch-stable-link',
name: 'Arch Downloads',
url: 'https://archlinux.org/packages/?q=jellyfin'
}
],
unstableButtons: [
Expand Down