File stan.spec of Package stan
#
# spec file for package stan (Version 0.4)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: stan
Url: http://www.roqe.org/stan
Summary: Stream Analyzer
Version: 0.4
Release: 149
License: BSD 3-Clause
Group: System/Console
Source: %{name}-%{version}.tar.gz
Patch1: %{name}-%{version}_add-errno.diff
Patch2: stan-0.4-optflags.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%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
example, stan can be used to analyze encrypted data or to measure the
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.
Authors:
--------
Konrad Rieck <kr at roqe dot org>
%prep
%setup -q
%patch1 -p1
%patch2
%build
autoreconf -fiv
%configure
make
%install
# make direc
mkdir -p /usr/bin
make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT;
%files
%defattr(-,root,root)
%doc README LICENSE
%attr(0755,root,root) /usr/bin/stan
%doc %{_mandir}/man1/stan.1.gz
%changelog
* Mon May 05 2008 crrodriguez@suse.de
- fix for Feature No 300498 , use RPM_OPT_FLAGS everywhere.
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Fri Aug 19 2005 thomas@suse.de
- added errno.h
* Sun Jan 11 2004 adrian@suse.de
- build as user
* Wed Jan 07 2004 thomas@suse.de
- initial packet (0.4)