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
|
Summary: command line control utiity for xmms
Name: xmmsctrl
Version: 1.9
Release: 1
URL: http://www.docs.uu.se/~adavid
Source0: %{name}-%{version}.tar.gz
License: GPL
Group: Applications/Multimedia
BuildRoot: %{_tmppath}/%{name}-root
Requires: xmms
BuildRequires: xmms-devel
%description
xmmsctrl is a small utility to control xmms from the command line. Its
goal is to be used coupled with sh to test xmms state and perform an
appropriate action, e.g. if playing then pause else play. The interest
of this is to bind keys in a window manager to have control over xmms
with keys that do play/next/pause, prev, control sound...
%prep
%setup -q
%build
make
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p ${RPM_BUILD_ROOT}/usr/bin
install -m 755 xmmsctrl ${RPM_BUILD_ROOT}/usr/bin
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc Changelog
%doc README
%doc HELP
%doc samples
/usr/bin/xmmsctrl
%changelog
* Mon Feb 18 2002 Jan IVEN <jan.iven@cern.ch>
- Initial build.
|