SHA256
1
0
forked from pool/cpuid
cpuid/cpuid.spec
2013-11-26 16:12:13 +00:00

60 lines
1.8 KiB
RPMSpec

# vim: set ts=4 sw=4 et:
#
# spec file for package cpuid
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: cpuid
Version: 20130610
Release: 0
Summary: X86 CPU Identification Tool
License: GPL-2.0+
Group: System/Management
Url: http://etallen.com/cpuid.html
Source: http://etallen.com/cpuid/%name-%version.src.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: gcc
BuildRequires: glibc-devel
BuildRequires: make
%description
cpuid executes the CPUID instruction on x86-family CPUs and decodes
the results into English descriptions. It knows about Intel, AMD, and
Cyrix CPUs, and is fairly complete.
%prep
%setup -q
%build
# remove -Werror=format-security which is used on Mandriva, as it produces
# a false positive compiler error on several printf calls:
CFLAGS=$(echo "%{optflags} -Wall"| %__sed 's/-Werror=format-security//g')
%__make CFLAGS="$CFLAGS"
%install
%__install -D -m 0755 cpuid "%{buildroot}%{_bindir}/cpuid"
%__install -D -m 0644 cpuid.man "%{buildroot}%{_mandir}/man1/cpuid.1"
%files
%defattr(-,root,root)
%doc ChangeLog FUTURE LICENSE
%{_bindir}/cpuid
%doc %{_mandir}/man1/cpuid.1*
%changelog