forked from pool/libnftnl
Jan Engelhardt
c7f05cd4c8
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/libnftnl?expand=0&rev=32
90 lines
2.7 KiB
RPMSpec
90 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package libnftnl
|
|
#
|
|
# Copyright (c) 2018 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: libnftnl
|
|
%define lname libnftnl7
|
|
Version: 1.1.0
|
|
Release: 0
|
|
Summary: Userspace library to access the nftables Netlink interface
|
|
License: GPL-2.0-or-later
|
|
Group: Productivity/Networking/Security
|
|
Url: http://netfilter.org/projects/libnftnl/
|
|
|
|
#Git-Clone: git://git.netfilter.org/libnftnl
|
|
Source: http://ftp.netfilter.org/pub/libnftnl/%name-%version.tar.bz2
|
|
Source2: http://ftp.netfilter.org/pub/libnftnl/%name-%version.tar.bz2.sig
|
|
Patch1: bufferov.diff
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: pkgconfig >= 0.21
|
|
BuildRequires: xz
|
|
BuildRequires: pkgconfig(jansson) >= 2.3
|
|
BuildRequires: pkgconfig(libmnl) >= 1.0.3
|
|
|
|
%description
|
|
libnftnl is a userspace library providing a low-level netlink
|
|
programming interface (API) to the in-kernel nf_tables subsystem.
|
|
|
|
%package -n %lname
|
|
Summary: Userspace library to access the nftables Netlink interface
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
libnftnl is a userspace library providing a low-level netlink
|
|
programming interface (API) to the in-kernel nf_tables subsystem.
|
|
|
|
%package devel
|
|
Summary: Development files for libnftnl
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
|
|
%description devel
|
|
libnftnl is a userspace library providing a low-level netlink
|
|
programming interface (API) to the in-kernel nf_tables subsystem.
|
|
|
|
This subpackage contains libraries and header files for developing
|
|
applications that want to make use of libnftnl.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch -P 1 -p1
|
|
|
|
%build
|
|
%configure --with-xml-parsing --with-json-parsing \
|
|
--includedir="%_includedir/%name"
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
rm -f "%buildroot/%_libdir"/*.la
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files -n %lname
|
|
%defattr(-,root,root)
|
|
%_libdir/libnftnl.so.7*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_includedir/%name/
|
|
%_libdir/libnftnl.so
|
|
%_libdir/pkgconfig/libnftnl.pc
|
|
%doc COPYING
|
|
|
|
%changelog
|