canutils/canutils.spec

65 lines
1.7 KiB
RPMSpec

#
# spec file for package canutils
#
# Copyright (c) 2012 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: canutils
Summary: Utilities for Controller Area Networks
Version: 4.0.6
Release: 0
Group: Hardware/Other
Url: http://code.google.com/p/nfc-tools/
License: GPL-2.0
#Git-Clone: git://git.pengutronix.de/git/tools/canutils
Source: %name-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf >= 2.59
BuildRequires: automake
BuildRequires: libtool >= 2
BuildRequires: pkgconfig
BuildRequires: xz
%if 0%{?suse_version} >= 1140 || 0%{?fedora_version}
BuildRequires: pkgconfig(libsocketcan) >= 0.0.8
%else
BuildRequires: libsocketcan-devel >= 0.0.8
%endif
%description
%prep
%setup -q
%build
./autogen.sh;
%configure --disable-static
make %{?_smp_mflags};
%install
b="%buildroot";
make install DESTDIR="$b";
# There are no development files here..
rm -Rf "$b/%_libdir/pkgconfig";
%files
%defattr(-,root,root)
%_bindir/can*
%_sbindir/canconfig
%_mandir/man8/can*.8*
%doc COPYING
%changelog