Jan Engelhardt 2012-01-01 00:20:02 +00:00 committed by Git OBS Bridge
commit 44aa6a9bd6
4 changed files with 87 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
nfacct-0.0.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3352c3ec6e9016234c52ca1acdacfceda9a4ee947f613fd71640f444cfdd46b4
size 10948

60
nfacct.spec Normal file
View File

@ -0,0 +1,60 @@
#
# spec file for package nfacct
#
# 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: nfacct
License: AGPL-2.0+
Group: Productivity/Networking/Security
Version: 0.0.0
Release: 0
Summary: Netfilter Extended Accounting utility
#Git-Web: http://git.netfilter.org/
#Git-Clone: git://git.netfilter.org/
Source: %name-%version.tar.xz
URL: http://netfilter.org/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf, automake >= 1.6
BuildRequires: pkgconfig(libmnl) >= 1, pkgconfig(libnetfilter_acct) >= 1.0.0
BuildRequires: xz
%description
This utility allows you to manipulate the extended accounting
infrastructure.
%prep
%if 0%{?__xz:1}
%setup -q
%else
tar -xf "%{S:0}" --use=xz;
%setup -DTq
%endif
%patch -P 1 -p1
%build
if [ ! -e configure ]; then
./autogen.sh;
fi
%configure
make %{?_smp_mflags}
%install
%makeinstall
%files
%defattr(-,root,root)
%changelog