]> git.pld-linux.org Git - packages/SimGear.git/blob - SimGear.spec
- initial release
[packages/SimGear.git] / SimGear.spec
1 Summary:        a set of libraries to build 3d simulations, games etc.
2 Name:           SimGear
3 Version:        0.0.14
4 Release:        1
5 Group:          Libraries
6 Group(de):      Libraries
7 Group(es):      Bibliotecas
8 Group(fr):      Librairies
9 Group(pl):      Biblioteki
10 License:        GPL
11 Source0:        ftp://ftp.simgear.org/pub/simgear/Source/%{name}-%{version}.tar.gz
12 Patch0:         %{name}-DESTDIR.patch
13 BuildRequires:  OpenGL-devel
14 BuildRequires:  XFree86-devel
15 BuildRequires:  libstdc++-devel
16 BuildRequires:  glut-devel
17 BuildRequires:  gcc-c++
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 SimGear is a set of open-source libraries designed to be used as
22 building blocks for quickly assembling 3d simulations, games, and
23 visualization applications.
24
25 The term "Simulation Kernel" is a bit presumptuous for us at this
26 point, but this is the direction we are heading with SimGear.
27
28 %description -l pl
29 SimGear to zestaw bibliotek zaprojektowanych do wykorzystania jako
30 klocki do szybkiego zestawiania trójwymiarowych symulacji, gier...
31
32 W tej chwili jest jeszcze trochê za wcze¶nie na u¿ywanie terminu
33 "J±dro Symulacji", ale to jest kierunek w którym zmierza SimGear
34
35 %package devel
36 Summary:        header files for SimGear
37 Group:          Development/Libraries
38 Group(de):      Entwicklung/Libraries
39 Group(fr):      Development/Librairies
40 Group(pl):      Programowanie/Biblioteki
41
42 %description devel
43 Header files neccessary to build SimGear applications
44
45 %description devel -l pl
46 Pliki nag³ówkowe potrzebne do budowania aplikacji z SimGearem
47
48 %package static
49 Summary:        static SimGear libraries
50 Group:          Development/Libraries
51 Group(de):      Entwicklung/Libraries
52 Group(fr):      Development/Librairies
53 Group(pl):      Programowanie/Biblioteki
54
55 %description static
56 Static SimGear libraries
57
58 %description static -l pl
59 Statyczne biblioteki SimGear
60
61 %prep
62 %setup -q
63 %patch0 -p1
64
65 %clean
66 rm -rf $RPM_BUILD_ROOT
67
68 %build
69 aclocal
70 autoconf
71 automake -a -c
72 %configure \
73         --with-x
74 %{__make}
75
76 %install
77 rm -rf $RPM_BUILD_ROOT
78 install -d $RPM_BUILD_ROOT
79 %{__make} DESTDIR="$RPM_BUILD_ROOT" install
80
81 %files
82 %defattr(644,root,root,755)
83 %attr(755,root,root) %{_libdir}/*.so.*.*
84
85 %files devel
86 %defattr(644,root,root,755)
87 %attr(755,root,root) %{_libdir}/*.so
88 %attr(755,root,root) %{_libdir}/*.la
89 %{_includedir}/*
90
91 %files static
92 %defattr(644,root,root,755)
93 %{_libdir}/*.a
This page took 0.06089 seconds and 3 git commands to generate.