]> git.pld-linux.org Git - packages/cpuid.git/blame_incremental - cpuid.spec
- updated to 20140123
[packages/cpuid.git] / cpuid.spec
... / ...
CommitLineData
1Summary: x86 CPUID information display program
2Summary(pl.UTF-8): Program wyświetlający informacje CPUID dla procesorów x86
3Name: cpuid
4Version: 20140123
5Release: 1
6License: GPL v2+
7Group: Applications/System
8Source0: http://www.etallen.com/cpuid/%{name}-%{version}.src.tar.gz
9# Source0-md5: f1a6946a1ece87928ddd1d1e3b06ed4b
10URL: http://www.etallen.com/cpuid.html
11ExclusiveArch: %{ix86} %{x8664}
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15Program that displays detailed information about x86 CPU(s) gathered
16from the CPUID instruction.
17
18%description -l pl.UTF-8
19Program wyświetlający szczegółowe informacje na temat zainstalowanego
20procesora (lub procesorów) x86 zebrane przy użyciu instrukcji CPUID.
21
22%prep
23%setup -q
24
25%build
26%{__make} \
27 CC="%{__cc}" \
28 CFLAGS="%{rpmcflags} -Wall"
29
30%install
31rm -rf $RPM_BUILD_ROOT
32install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man1}
33
34install %{name} $RPM_BUILD_ROOT%{_sbindir}
35cp -a %{name}.man $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
36
37%clean
38rm -rf $RPM_BUILD_ROOT
39
40%files
41%defattr(644,root,root,755)
42%doc ChangeLog FUTURE
43%attr(755,root,root) %{_sbindir}/cpuid
44%{_mandir}/man1/cpuid.1*
This page took 0.379717 seconds and 4 git commands to generate.