|
[code:1]
Name: fluxbox
Version: 1.0rc
Release: 1mgc
Summary: Window Manager based on Blackbox
Group: User Interface/Desktops
License: MIT
URL: http://fluxbox.sourceforge.net
Source0: http://download.sourceforge.net/fluxbox/fluxbox-1.0rc.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
BuildPrereq: imlib2-devel, zlib-devel, libXft-devel, fontconfig-devel
%description
Fluxbox is yet another windowmanager for X. It's based on the Blackbox 0.61.1
code. Fluxbox looks like blackbox and handles styles, colors, window placement
and similar thing exactly like blackbox (100% theme/style compatibility). So
what's the difference between fluxbox and blackbox then? The answer is: LOTS!
Have a look at the homepage for more info ;)
%prep
%setup -q
%build
%configure --enable-nls \
--enable-imlib2
#make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
# this is for Magic Linux.
mkdir -p $RPM_BUILD_ROOT%{_datadir}/xsessions/
#install -m 0755 -p %SOURCE3 $RPM_BUILD_ROOT%{_datadir}/xsessions/
#install -m 0755 -p %SOURCE4 $RPM_BUILD_ROOT%{_bindir}/fluxbox-xdg-menu
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,755)
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
%{_bindir}/*
%{_mandir}/man1/*
%{_datadir}/%{name}
%changelog
* Wed Jun 21 2006 Michael Bibby <michaelbibby[AT]gmail.com>
1.0rc
- First spec file for Magic Linux.
[/code:1] |
|