This repository has been archived on 2025-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
rpmbuild-jellyfin-web/jellyfin-web.spec
Ben Vincent 6c53b3a03d
Some checks failed
continuous-integration/drone/push Build is failing
testing new RPM spec
2024-08-26 23:31:21 +10:00

36 lines
852 B
RPMSpec

%global debug_package %{nil}
Name: jellyfin-web
Version: 10.9.10
Release: 1%{?dist}
Summary: The Free Software Media System web client
License: GPLv2
URL: https://jellyfin.org
Source0: %{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: nodejs, npm
Requires: nodejs, npm
%description
Jellyfin Web is the frontend used for most of the clients available for end users, such as desktop browsers, Android, and iOS.
%prep
%setup -q
%build
npm install
npm run build:development
%install
mkdir -p %{buildroot}/%{_libdir}/jellyfin/jellyfin-web
cp -r dist/* %{buildroot}/%{_libdir}/jellyfin/jellyfin-web
%files
%license LICENSE
%{_libdir}/jellyfin/jellyfin-web
%changelog
* Mon Aug 26 2024 Ben Vincent <ben@unkin.net> - 10.9.10-1
- Initial build of jellyfin-web 10.9.10