dropwatch/dropwatch.spec

61 lines
1.7 KiB
RPMSpec
Raw Normal View History

#
# spec file for package dropwatch
#
# Copyright (c) 2015 SUSE LINUX 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: dropwatch
Version: 1.4.g7c33d8a
Release: 0
Summary: Kernel dropped packet monitor
License: GPL-2.0
Group: Productivity/Networking/Diagnostic
Url: https://fedorahosted.org/dropwatch/
Source: %{name}-%{version}.tar.xz
BuildRequires: binutils-devel
BuildRequires: libnl3-devel
BuildRequires: pkgconfig
BuildRequires: readline-devel
Requires: readline
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
dropwatch is an interactive utility for monitoring and recording packets that
are dropped by the kernel
%prep
%setup -q
%build
cd src
export CFLAGS="%{optflags}"
make %{?_smp_mflags}
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_mandir}/man1
install -m0755 src/dropwatch %{buildroot}%{_bindir}
install -m0644 doc/dropwatch.1 %{buildroot}%{_mandir}/man1
%files
%defattr(-,root,root,-)
%{_bindir}/*
%{_mandir}/man1/*
%doc README
%doc COPYING
%changelog