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
|
%define name sear
%define version 0.5.0
%define release 1
Summary: Sear - an 3D client for Worldforge
Name: %{name}
Version: %{version}
Release: %{release}
Source: http://ftp.worldforge.org/pub/worldforge/clients/sear/sear-%{version}.tar.gz
Source0: %{name}-%{version}.tar.gz
URL: http://www.worldforge.org/dev/eng/clients/sear/
Copyright: GPL
Group: Amusements/Games
BuildRoot: /var/tmp/%{name}-buildroot
Prefix: %{_prefix}
Requires: SDL >= 1.2.2 SDL_image >= 1.2.2 SDL_mixer >= 1.2.2 varconf >= 0.6.1 eris >= 1.2.0 mercator >= 0.2.0 cal3d
BuildRequires: SDL-devel >= 1.2.2 SDL_image-devel >= 1.2.2 SDL_mixer-devel >= 1.2.2 varconf-devel >= 0.6.1 eris-devel >= 1.2.0 mercator-devel >= 0.2.0 lib3ds >= 1.2.0 cal3d-devel
%description
Sear is a 3D client for MMORPGs using the Worldforge system.
written by Simon Goodall <sear@simongoodall.co.uk>
%prep
rm -rf ${RPM_BUILD_ROOT}
%setup -q
%build
CXXFLAGS="$RPM_OPT_FLAGS" %configure
make
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_datadir}/%{name}/*
%{_bindir}/sear.bin
%{_bindir}/sear
%doc README COPYING AUTHORS
%ChangeLog
* Tue Jul 13 2004 Simon Goodall <simon@simongoodall.co.uk>
- Updates to work with Sear 0.5.0 release
* Sun Jan 12 2003 Simon Goodall <simon@simongoodall.co.uk>
- Added Dependancies
- Changed group to Amusements/Games instead of just Games
# end of file
|