]> git.pld-linux.org Git - packages/thinkfan.git/blame - thinkfan.spec
- packaging new files
[packages/thinkfan.git] / thinkfan.spec
CommitLineData
4c854604 1Summary: ThinkPad fan control program
e3fa13dc 2Summary(pl.UTF-8): Program do sterowania wiatraczkiem w ThinkPadach
4c854604 3Name: thinkfan
9be8a9cf 4Version: 1.3.1
4c854604 5Release: 1
e3fa13dc
JB
6License: GPL v3+
7Group: Applications/System
9be8a9cf 8#Source0Download: https://github.com/vmatare/thinkfan/releases
d9447941 9Source0: https://github.com/vmatare/thinkfan/archive/refs/tags/%{version}.tar.gz
9be8a9cf 10# Source0-md5: 8f7cdec0a524ed99fe6836f95d749da1
4c854604 11Source1: %{name}.init
9be8a9cf 12URL: https://github.com/vmatare/thinkfan
afaf75d5 13BuildRequires: cmake >= 2.6
708da53e 14BuildRequires: libatasmart-devel
09bd32e7 15BuildRequires: rpmbuild(macros) >= 1.605
e3fa13dc 16BuildRequires: sed >= 4.0
d9447941
KM
17BuildRequires: systemd-devel
18BuildRequires: yaml-cpp-devel >= 0.5.4
4c854604
AM
19BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21%description
5f5f68ff
ER
22A minimalist fan control program. Supports any kind of system via the
23sysfs hwmon interface (/sys/class/hwmon). It is designed to eat as
24little CPU power as possible. The development was inspired by the
25excellent work people have done on thinkwiki.org.
4c854604 26
e3fa13dc
JB
27%description -l pl.UTF-8
28Minimalistyczny program do sterowania wiatraczkiem. Obsługuje dowolny
29system poprzez interfejs sysfs hwmon (/sys/class/hwmon). Został tak
30zaprojektowany, aby obciążać procesor w najmniejszym możliwym stopniu.
31Stworzenie tego narzędzia zostało zainspirowane wspaniałą pracą
32wykonaną przez ludzi na thinkwiki.org.
33
4c854604 34%prep
9be8a9cf 35%setup -q
4c854604
AM
36
37%build
f4d0b43c
AM
38install -d build
39cd build
09bd32e7 40%cmake \
708da53e 41 ..
4c854604 42
4c854604
AM
43%install
44rm -rf $RPM_BUILD_ROOT
9be8a9cf 45install -d $RPM_BUILD_ROOT/etc/rc.d/init.d \
d9447941 46$RPM_BUILD_ROOT{%{systemdunitdir},%{_sysconfdir}/systemd/system}
9be8a9cf 47
f4d0b43c
AM
48
49%{__make} -C build install \
50 DESTDIR=$RPM_BUILD_ROOT
4c854604 51
d9447941
KM
52# Packaged by %doc
53%{__rm} $RPM_BUILD_ROOT%{_docdir}/{COPYING,README.md,thinkfan.yaml}
54
5f5f68ff 55install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
9be8a9cf 56cp -p examples/thinkfan.yaml $RPM_BUILD_ROOT%{_sysconfdir}/thinkfan.yaml
d9447941 57mv $RPM_BUILD_ROOT%{_prefix}%{systemdunitdir}/*.service $RPM_BUILD_ROOT%{systemdunitdir}
4c854604
AM
58
59%clean
60rm -rf $RPM_BUILD_ROOT
61
62%post
63/sbin/chkconfig --add thinkfan
5f5f68ff 64%service thinkfan restart
9be8a9cf 65%systemd_post thinkfan.service
4c854604
AM
66
67%preun
68if [ "$1" = "0" ]; then
5f5f68ff
ER
69 /sbin/chkconfig --del thinkfan
70 %service thinkfan stop
4c854604 71fi
9be8a9cf
AZ
72%systemd_preun thinkfan.service
73
74%postun
75%systemd_reload
76
77%triggerpostun -- %{name} < 5.42-5
78%systemd_trigger smartd.service
4c854604
AM
79
80%files
81%defattr(644,root,root,755)
9be8a9cf 82%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}.yaml
d9447941
KM
83%dir %{_sysconfdir}/systemd/system/thinkfan.service.d
84%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/systemd/system/thinkfan.service.d/override.conf
5f5f68ff 85%attr(754,root,root) /etc/rc.d/init.d/%{name}
4c854604 86%attr(755,root,root) %{_sbindir}/thinkfan
9be8a9cf 87%doc COPYING README.md examples/thinkfan.yaml
4c854604 88%{_mandir}/man1/thinkfan.1*
d9447941
KM
89%{_mandir}/man5/thinkfan.conf.5*
90%{_mandir}/man5/thinkfan.conf.legacy.5*
9be8a9cf 91%{systemdunitdir}/%{name}.service
d9447941
KM
92%{systemdunitdir}/%{name}-sleep.service
93%{systemdunitdir}/%{name}-wakeup.service
This page took 0.09773 seconds and 4 git commands to generate.