1%define ver	@VERSION@
2%define release	1
3%define	prefix	/usr
4
5Summary:	A full featured irc bouncer.
6Name:		muh
7Version:	%{ver}
8Release:	%{release}
9Copyright:	GPL
10Source:		http://mind.riot.org/muh/download/muh-%{ver}.tar.gz
11URL:		http://mind.riot.org/muh/
12Group:		Applications/Net
13BuildRoot:	%{_tmppath}/%{name}-root
14
15%description
16Muh is a smart and versatile irc-bouncing tool for unix. The difference between Muh and other bouncers is that Muh
17will go on irc as soon as it's launched, guarding or attempting to get your nick.
18Control over the session can be taken as with other bouncers, by simply connecting to muh (and providing a
19password) like you would connect to a normal irc-server.
20On disconnect, Muh is able to stay in the channels and to reintroduce them to your client on your next connect.
21Other handy features are message-logging, flood-protection, dcc-bouncing, etc.
22
23%prep
24%setup
25CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix}
26%build
27make
28
29%install
30rm -rf $RPM_BUILD_ROOT
31make prefix=$RPM_BUILD_ROOT%{prefix} install
32
33%clean
34rm -rf $RPM_BUILD_ROOT
35
36%files
37%defattr(-, root, root)
38%{prefix}
39
40%changelog
41* Thu Mar 21 2002 Sebastian Kienzl <zap@riot.org>
42- Spec file cleanup
43
44* Fri Dec 29 2000 Bastian Friedrich <bastian@bastian-friedrich.de>
45- Initial RPM release.
46