generated from unkin/rpmbuild-template
36 lines
852 B
RPMSpec
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
|