bazzite/spec_files/jupiter-fan-control/jupiter-fan-control.spec

59 lines
1.6 KiB
RPMSpec

Name: jupiter-fan-control
Version: {{{ git_dir_version }}}
Release: 1%{?dist}
Summary: Steam Deck Fan Controller
License: MIT
URL: https://github.com/ublue-os/bazzite
Source: https://gitlab.com/evlaV/%{name}/-/archive/main/%{name}-main.tar.gz
BuildArch: noarch
Patch0: fedora.patch
Requires: python3
BuildRequires: systemd-rpm-macros
%description
SteamOS 3.0 Steam Deck Fan Controller
# Disable debug packages
%define debug_package %{nil}
%prep
%setup -n %{name}-main
%patch 0 -p0
%build
%install
mkdir -p %{buildroot}%{_unitdir}/
mkdir -p %{buildroot}%{_datadir}/
cp -rv usr/share/* %{buildroot}%{_datadir}
cp -v usr/lib/systemd/system/jupiter-fan-control.service %{buildroot}%{_unitdir}/jupiter-fan-control.service
# Do post-installation
%post
%systemd_post jupiter-fan-control.service
# Do before uninstallation
%preun
%systemd_preun jupiter-fan-control.service
# Do after uninstallation
%postun
%systemd_postun_with_restart jupiter-fan-control.service
# This lists all the files that are included in the rpm package and that
# are going to be installed into target system where the rpm is installed.
%files
%doc README.md
%{_datadir}/jupiter-fan-control/fancontrol.py
%{_datadir}/jupiter-fan-control/jupiter-fan-control-config.yaml
%{_datadir}/jupiter-fan-control/PID.py
%{_unitdir}/jupiter-fan-control.service
# Finally, changes from the latest release of your application are generated from
# your project's Git history. It will be empty until you make first annotated Git tag.
%changelog
{{{ git_dir_changelog }}}