1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
#
# SPEC file for camstream
#
%define ver 0.26.2
%define rel 1
%define _prefix /usr
%define execprefix /usr
%define datadir %{_prefix}/share
Summary: A webcam streaming image viewer
Name: camstream
Version: %ver
Release: %rel
Copyright: GPL
Group: X11/Utilities
BuildRoot: /tmp/camstream-%ver
Source: camstream-0.26.2.tar.gz
URL: http://www.smcc.demon.nl/camstream
Packager: Steve Borho <steve@borho.org>
%description
CamStream (tool for webcams) has the following features:
* Graphical user interface, it doesn't take command line arguments!
* View multiple image streams from webcams or TV cards.
* Change image size, brightness, contrast, etc. on the fly.
* Save images in a variety of formats.
* Include a timestamp in the image and/or the saved filename.
* Uploading images to a server with FTP.
* Take regular snapshots, or any moment you decide.
* All configuration settings are stored per device, not globally.
In addition, CamStream has some extra dialogs for features only found
in the Philips webcam
%changelog
* Fri Jan 09 2003 Steve Borho <steve@borho.org>
-Initial attempt
%prep
%setup
%build
./configure --prefix=%{_prefix} --exec-prefix=%{execprefix} --datadir=%{datadir}
make
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{_prefix} exec_prefix=$RPM_BUILD_ROOT%{execprefix} SHAREDIR=$RPM_BUILD_ROOT%{datadir}/camstream install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_prefix}
%doc README
|