forked from pool/libnetfilter_acct
Jan Engelhardt
f52a570628
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/libnetfilter_acct?expand=0&rev=2
82 lines
2.4 KiB
RPMSpec
82 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package libnetfilter_acct
|
|
#
|
|
# Copyright (c) 2011 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: libnetfilter_acct
|
|
%define lname %{name}0
|
|
Version: 0.0.0.26
|
|
Release: 1
|
|
License: LGPL-2.1+
|
|
Group: Productivity/Networking/Security
|
|
URL: http://netfilter.org/projects/libnetfilter_acct/
|
|
Source: %name-%version.tar.xz
|
|
Source3: baselibs.conf
|
|
BuildRoot: %_tmppath/%name-%version-build
|
|
BuildRequires: automake, libtool, pkgconfig, xz
|
|
BuildRequires: pkgconfig(libmnl) >= 1.0.0
|
|
Summary: Userspace library for the in-kernel Netfilter counters
|
|
|
|
%description
|
|
This library provides the programming interface (API) to the
|
|
Netfilter extended accounting infrastructure.
|
|
|
|
%package -n %lname
|
|
Group: System/Libraries
|
|
Summary: Userspace library for the in-kernel Netfilter counters
|
|
|
|
%description -n %lname
|
|
This library provides the programming interface (API) to the
|
|
Netfilter extended accounting infrastructure.
|
|
|
|
%package devel
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
Summary: Userspace library for the in-kernel Netfilter counters
|
|
|
|
%description devel
|
|
This library provides the programming interface (API) to the
|
|
Netfilter extended accounting infrastructure.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
if [ ! -e configure ]; then
|
|
autoreconf -fi;
|
|
fi;
|
|
%configure --disable-static --includedir=%_includedir/%name-%version
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%makeinstall
|
|
rm -f "%buildroot/%_libdir"/*.la;
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files -n %lname
|
|
%defattr(-,root,root)
|
|
%_libdir/libnetfilter_acct.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_includedir/libnetfilter_acct*
|
|
%_libdir/libnetfilter_acct.so
|
|
%_libdir/pkgconfig/libnetfilter_acct.pc
|
|
|
|
%changelog
|