-
Notifications
You must be signed in to change notification settings - Fork 3
/
sear.spec.in
58 lines (45 loc) · 1.55 KB
/
sear.spec.in
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
%define name @PACKAGE@
%define version @VERSION@
%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/
License: GPL
Group: Amusements/Games
BuildRoot: /var/tmp/%{name}-buildroot
Prefix: %{_prefix}
Requires: SDL >= @SDL_VERSION@ SDL_image >= 1.2.2 SDL_mixer >= 1.2.2 varconf >= @VARCONF_VERSION@ eris >= @ERIS_VERSION@ mercator >= @MERCATOR_VERSION@ cal3d
BuildRequires: SDL-devel >= @SDL_VERSION@ SDL_image-devel >= 1.2.2 SDL_mixer-devel >= 1.2.2 varconf-devel >= @VARCONF_VERSION@ eris-devel >= @ERIS_VERSION@ mercator-devel >= @MERCATOR_VERSION@ lib3ds >= @LIB3DS_VERSION@ cal3d-devel
%description
Sear is a 3D client for MMORPGs using the Worldforge system.
written by Simon Goodall <[email protected]>
%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 26 2004 Simon Goodall <[email protected]>
- Update binary name
* Tue Jul 13 2004 Simon Goodall <[email protected]>
- Updates to work with Sear 0.5.0 release
* Sun Jan 12 2003 Simon Goodall <[email protected]>
- Added Dependancies
- Changed group to Amusements/Games instead of just Games
# end of file