]> git.pld-linux.org Git - packages/thinkfan.git/blame - thinkfan.spec
- up to 0.9.1
[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
f4d0b43c 4Version: 0.9.1
4c854604 5Release: 1
e3fa13dc
JB
6License: GPL v3+
7Group: Applications/System
4c854604 8Source0: http://downloads.sourceforge.net/thinkfan/%{name}-%{version}.tar.gz
f4d0b43c 9# Source0-md5: a981142f2c52ee4b0af69d5abbe03ced
4c854604 10Source1: %{name}.init
5f5f68ff 11URL: http://thinkfan.sourceforge.net/
f4d0b43c 12BuildRequires: cmake
e3fa13dc 13BuildRequires: sed >= 4.0
4c854604
AM
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
5f5f68ff
ER
17A minimalist fan control program. Supports any kind of system via the
18sysfs hwmon interface (/sys/class/hwmon). It is designed to eat as
19little CPU power as possible. The development was inspired by the
20excellent work people have done on thinkwiki.org.
4c854604 21
e3fa13dc
JB
22%description -l pl.UTF-8
23Minimalistyczny program do sterowania wiatraczkiem. Obsługuje dowolny
24system poprzez interfejs sysfs hwmon (/sys/class/hwmon). Został tak
25zaprojektowany, aby obciążać procesor w najmniejszym możliwym stopniu.
26Stworzenie tego narzędzia zostało zainspirowane wspaniałą pracą
27wykonaną przez ludzi na thinkwiki.org.
28
4c854604
AM
29%prep
30%setup -q
e3fa13dc 31
f4d0b43c 32%{__sed} -i -e 's#bin#sbin#g' -e 's#man/man1#share/man/man1#g' CMakeLists.txt
4c854604
AM
33
34%build
f4d0b43c
AM
35install -d build
36cd build
37%{cmake} ..
4c854604 38
4c854604
AM
39%install
40rm -rf $RPM_BUILD_ROOT
f4d0b43c
AM
41install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
42
43%{__make} -C build install \
44 DESTDIR=$RPM_BUILD_ROOT
4c854604 45
5f5f68ff 46install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
f4d0b43c 47cp -p examples/thinkfan.conf.simple $RPM_BUILD_ROOT%{_sysconfdir}/thinkfan.conf
4c854604
AM
48
49%clean
50rm -rf $RPM_BUILD_ROOT
51
52%post
53/sbin/chkconfig --add thinkfan
5f5f68ff 54%service thinkfan restart
4c854604
AM
55
56%preun
57if [ "$1" = "0" ]; then
5f5f68ff
ER
58 /sbin/chkconfig --del thinkfan
59 %service thinkfan stop
4c854604
AM
60fi
61
62%files
63%defattr(644,root,root,755)
f4d0b43c 64%doc NEWS README examples/thinkfan.conf.*
5f5f68ff
ER
65%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}.conf
66%attr(754,root,root) /etc/rc.d/init.d/%{name}
4c854604
AM
67%attr(755,root,root) %{_sbindir}/thinkfan
68%{_mandir}/man1/thinkfan.1*
This page took 0.105942 seconds and 4 git commands to generate.