]> git.pld-linux.org Git - packages/FlightGear.git/blob - FlightGear.spec
e614da145796c031bcac756c22837cf3dec0861d
[packages/FlightGear.git] / FlightGear.spec
1 # TODO:
2 # - Make FlightGear-extra-planes for subset of planes from
3 #   http://www.flightgear.org/Downloads/aircraft/index.shtml
4
5 Summary:        Free Flight Simulator
6 Summary(pl.UTF-8):      darmowy symulator lotu
7 Name:           FlightGear
8 Version:        2.12.0
9 Release:        1
10 License:        GPL
11 Group:          X11/Applications/Games
12 Source0:        ftp://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-%{version}.tar.bz2
13 # Source0-md5:  23e2de5f311f4cbe94ec3386736ee8a5
14 Source1:        ftp://flightgear.wo0t.de/ftp/Shared/FlightGear-data-%{version}.tar.bz
15 # Source1-md5:  049cfa1f7bc7de528630c2a41c6ad6eb
16 #Source2:       ftp://ftp.flightgear.org/pub/fgfs/Everything-0.7/Base-Packages/fgfs-docs-0.7.7.tar.gz
17 ## Source2-md5: 31f35d3e63e522565e8990ead99e7507
18 Patch0:         flightgear-cmake.patch
19 URL:            http://www.flightgear.org/
20 BuildRequires:  fltk-gl-devel
21 BuildRequires:  cmake
22 BuildRequires:  OpenAL-devel
23 BuildRequires:  OpenGL-devel
24 BuildRequires:  SimGear-devel = %{version}
25 BuildRequires:  freeglut-devel
26 BuildRequires:  libstdc++-devel
27 BuildRequires:  libxml-devel
28 BuildRequires:  plib-devel >= 1.8.5-3
29 BuildRequires:  zlib-devel
30 Requires:       OpenGL
31 Requires:       OpenSceneGraph-plugins
32 Requires:       plib >= 1.8.4
33 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
34
35 %define _noautoreqdep   libGL.so.1 libGLU.so.1 libGLcore.so.1
36
37 %description
38 The Flight Gear project is working to create a sophisticated flight
39 simulator framework for the development and pursuit of interesting
40 flight simulator ideas. We are developing a solid basic sim that can
41 be expanded and improved upon by anyone interested in contributing.
42
43 %description -l pl.UTF-8
44 Projekt Flight Gear to wyrafinowany symulator lotów pozwalający
45 rozpowszechniać idee tego typu symulacji.
46
47 %prep
48 %setup -q -n flightgear-%{version} -a 1
49 %patch0 -p1
50
51 find %{name} -name 'CVS' -type d | xargs rm -rf
52
53 %build
54 install -d build
55 cd build
56 %cmake ../
57 %{__make}
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61 install -d $RPM_BUILD_ROOT%{_datadir}/games/%{name}
62
63 %{__make} -C build install \
64         DESTDIR=$RPM_BUILD_ROOT
65
66 echo "#!/bin/sh" > runfgfs
67 echo "exec %{_bindir}/fgfs --fg-root=%{_datadir}/games/%{name}/fgdata \$*" >> runfgfs
68 install runfgfs $RPM_BUILD_ROOT%{_bindir}
69 cp -R fgdata $RPM_BUILD_ROOT%{_datadir}/games/%{name}
70
71 %clean
72 rm -rf $RPM_BUILD_ROOT
73
74 %files
75 %defattr(644,root,root,755)
76 %doc AUTHORS NEWS docs-mini/*
77 %attr(755,root,root) %{_bindir}/*
78 %{_datadir}/games/%{name}
79 %{_mandir}/*/*
This page took 0.062284 seconds and 2 git commands to generate.