2007-01-15 23:38:01 +00:00
|
|
|
#
|
2011-12-05 19:33:30 +00:00
|
|
|
# spec file for package stan
|
2007-01-15 23:38:01 +00:00
|
|
|
#
|
2016-04-29 12:36:51 +00:00
|
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
2007-01-15 23:38:01 +00:00
|
|
|
#
|
2009-06-18 15:59:26 +00:00
|
|
|
# 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.
|
|
|
|
|
|
2008-05-05 23:43:10 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
2007-01-15 23:38:01 +00:00
|
|
|
#
|
|
|
|
|
|
2012-05-31 21:10:30 +00:00
|
|
|
|
2008-05-05 23:43:10 +00:00
|
|
|
Name: stan
|
2016-04-29 12:36:51 +00:00
|
|
|
Version: 0.4.1
|
|
|
|
|
Release: 0
|
2008-05-05 23:43:10 +00:00
|
|
|
Summary: Stream Analyzer
|
2011-12-05 19:33:30 +00:00
|
|
|
License: BSD-4-Clause
|
2008-05-05 23:43:10 +00:00
|
|
|
Group: System/Console
|
2016-04-29 12:36:51 +00:00
|
|
|
Url: http://www.roqe.org/stan
|
2008-05-05 23:43:10 +00:00
|
|
|
Source: %{name}-%{version}.tar.gz
|
2012-05-31 21:10:30 +00:00
|
|
|
Patch1: %{name}-0.4_add-errno.diff
|
2008-05-05 23:43:10 +00:00
|
|
|
Patch2: stan-0.4-optflags.patch
|
2016-04-29 12:36:51 +00:00
|
|
|
BuildRequires: autoconf
|
|
|
|
|
BuildRequires: automake
|
2008-05-05 23:43:10 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2007-01-15 23:38:01 +00:00
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Stan is a small console application that works on all UNIX systems. It
|
|
|
|
|
is able to generate several types of statistical information about a
|
|
|
|
|
stream. A stream can be either standard input or given files. For
|
2008-05-05 23:43:10 +00:00
|
|
|
example, stan can be used to analyze encrypted data or to measure the
|
2007-01-15 23:38:01 +00:00
|
|
|
quality of a pseudo-random number generator, but there are probably
|
|
|
|
|
hundreds of other situations where stan comes in handy.
|
|
|
|
|
|
|
|
|
|
Stan supports three types of analysis: general statistics, pattern
|
|
|
|
|
statistics, and bit statistics. By choosing intelligent values for each
|
|
|
|
|
statistic, stan can give amazing results about a stream and is fun to
|
|
|
|
|
work with.
|
|
|
|
|
|
|
|
|
|
%prep
|
2008-05-05 23:43:10 +00:00
|
|
|
%setup -q
|
2024-03-02 22:23:50 +00:00
|
|
|
%patch -P 1 -p1
|
|
|
|
|
%patch -P 2
|
2007-01-15 23:38:01 +00:00
|
|
|
|
|
|
|
|
%build
|
2008-05-05 23:43:10 +00:00
|
|
|
autoreconf -fiv
|
2016-04-29 12:36:51 +00:00
|
|
|
%configure
|
|
|
|
|
make %{?_smp_mflags}
|
2007-01-15 23:38:01 +00:00
|
|
|
|
|
|
|
|
%install
|
2016-04-29 12:36:51 +00:00
|
|
|
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
2007-01-15 23:38:01 +00:00
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%doc README LICENSE
|
2016-04-29 12:36:51 +00:00
|
|
|
%{_bindir}/stan
|
|
|
|
|
%{_mandir}/man1/stan.1%{ext_man}
|
2007-01-15 23:38:01 +00:00
|
|
|
|
2008-05-05 23:43:10 +00:00
|
|
|
%changelog
|