
%define name spazz
%define version test1
%define release 1
%define prefix /usr
Summary : Picture viewer
Name: %{name}
Version: %{version}
Release: %{release}
Copyright: GPL
Vendor: Boubouline Software
Packager: Okki <crow@planete.net>
URL: http://okki.lefute.com
Group: Applications/Multimedia
Source: %{name}-%{version}-%{release}.tar.gz
BuildRoot: /var/tmp/%{name}-buildroot
Prefix: %{prefix}
Docdir: %{prefix}/doc

%description
This is my little attempt at an XV/ACDSee style image viewer for X. The problem with XV is it's slow as hell, and the problem with ACDSee is, well, it's for Windows.

%prep
rm -rf $RPM_BUILD_ROOT

%setup
./configure

%build
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"

%install
make prefix=$RPM_BUILD_ROOT%{prefix} install

%clean
rm -rf $RPM_BUILD_ROOT
rm -rf $RPM_BUILD_DIR/*

%files
%defattr (-,root,root)
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
/usr/bin/spazz

%changelog

* Thu Jun 1 2000 Georges Seguin crow@planete.net 
- First RPM
