]> git.pld-linux.org Git - packages/pmtools.git/blob - pmtools.spec
f7e1cc9fbc70b409f031bb73ce844f0d6a535812
[packages/pmtools.git] / pmtools.spec
1 Summary:        Retrieve the DSDT from your bios
2 Name:           pmtools
3 Version:        20031210
4 Release:        0.1
5 License:        GPL
6 Group:          Applications/System
7 Source0:        http://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/utils/%{name}-%{version}.tar.bz2
8 # Source0-md5:  7d482ab86410f3f8c30a9fba5d660f32
9 URL:            http://acpi.sourceforge.net/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 DSDT is an acronym for Differentiated System Description Table. This
14 table contains the Differentiated Definition Block, which supplies the
15 information and configuration information about the base system. It is
16 always inserted into the ACPI Namespace by the OS at boot time.
17 Unfortunately, many hardware vendors and OEMs are not capable of
18 supplying fully functional tables (not even the members of the ACPI
19 SIG)
20
21 %prep
22 %setup -q
23
24 %build
25 %{__make} \
26         CC="%{__cc}" \
27         CFLAGS="%{rpmcflags} -Wall -W -pedantic"
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31 install -d $RPM_BUILD_ROOT%{_sbindir}
32
33 %{__make} install \
34         PREFIX=$RPM_BUILD_ROOT%{_prefix}
35
36 %clean
37 rm -rf $RPM_BUILD_ROOT
38
39 %files
40 %defattr(644,root,root,755)
41 %doc CHANGELOG README AUTHORS
42 %attr(755,root,root) %{_sbindir}/*
This page took 0.103701 seconds and 3 git commands to generate.