-
Notifications
You must be signed in to change notification settings - Fork 5
/
soccerwindow2.spec.in
60 lines (46 loc) · 1.18 KB
/
soccerwindow2.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
59
60
Summary: The Viewer for the RoboCup Soccer 2D Simulation
Name: @PACKAGE@
Version: @VERSION@
Release: 0
License: GPL
Group: Applications/Engineering
Source: %{name}-%{version}.tar.gz
#Patch:
URL: http://rctools.sourceforge.jp/
Packager: Hidehisa Akiyama <akky@users.sourceforge.jp>
BuildRoot: %{_tmppath}/%{name}-root
#Requires: wxGTK >= 2.6.1
Requires: qt >= 3.3.0
Requires: boost >= 1.32
Requires: librcsc >= 1.3.0
#BuildRequires: wxGTK-devel >= 2.6.1
BuildRequires: qt-devel >= 3.3.0
BuildRequires: boost-devel >= 1.32
BuildRequires: librcsc-devel >= 1.3.0
%description
soccerwindow2 is a viewer program for the RoboCup Soccer 2D
Simulation. soccerwindow2 has a compatibility with the official
soccer monitor and logplayer. Moreover, soccerwindow2 can work as a
visual debugger and debug server to help us to develop a soccer agent.
%prep
rm -rf %{buildroot}
%setup
#%patch -p1
%build
%configure
make %{?_smp_mflags}
%install
rm -rf ${buildroot}
%makeinstall
%clean
rm -rf %{buildroot}
%post
%postun
%files
%defattr(-,root,root)
%doc AUTHORS COPYING INSTALL NEWS README
%{_bindir}/*
%{_datadir}/*
%changelog
* Thu Sep 28 2006 Hidehisa Akiyama <akky@users.sourceforge.jp>
-created initial version.