File: acpitool.spec

package info (click to toggle)
acpitool 0.5.1-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 900 kB
  • sloc: sh: 3,366; cpp: 2,506; makefile: 20
file content (45 lines) | stat: -rw-r--r-- 1,304 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Name: acpitool
Version: 0.5
Release: 1
Source0: http://freeunix.dyndns.org:8000/ftp_site/pub/unix/acpitool/acpitool-0.5.tar.gz
Summary: A command line ACPI client for Linux.
Group: Applications/Internet
License: GPL
BuildRoot: %{_tmppath}/%{name}-root

%description
AcpiTool is a Linux ACPI client. It's a small command line application,
intended to be a replacement for the apm tool. The primary target
audience are laptop users, since these people are most interested in
things like battery status, thermal status and the ability to suspend
(sleep mode). The program simply accesses the /proc/acpi or /sysfs entries
to get/set acpi values. Hence, a computer running a Linux kernel from
the 2.4.x or 2.6.x series with ACPI enabled is needed.

%prep
%setup

%build
./configure

make

%install
[ "$RPM_BUILD_ROOT" != "/" ] && rm -fr $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
make install INSTALLPREFIX=$RPM_BUILD_ROOT/usr MANDIR=$RPM_BUILD_ROOT%{_mandir}/man1
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
cp -p INSTALL README TODO $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}

%files
%defattr(-,root,root)
%doc INSTALL README TODO
%{_bindir}/*
%{_mandir}/*/*

%changelog
* Tue Aug 24 2004 Robert Ambrose <rna@muttsoft.com>
- Created .spec file.