]> git.pld-linux.org Git - packages/btanks.git/blob - btanks.spec
05d0e74bdb805acb549a724c442f9ffb76885f4b
[packages/btanks.git] / btanks.spec
1 # TODO:
2 # - pl description and summary
3 Summary:        Fast 2d tank arcade game with multiplayer and split-screen modes
4 Name:           btanks
5 Version:        0.7.5800
6 Release:        1
7 License:        GPL v2
8 Group:          X11/Applications/Games
9 Source0:        http://dl.sourceforge.net/btanks/%{name}-%{version}.tar.bz2
10 # Source0-md5:  538eadf2b78897620f3ef683a4ea423a
11 Source1:        %{name}.desktop
12 URL:            http://btanks.sourceforge.net/blog/langswitch_lang/en
13 BuildRequires:  OpenAL-devel
14 BuildRequires:  OpenGL-GLU-devel
15 BuildRequires:  SDL_image-devel
16 BuildRequires:  expat-devel
17 BuildRequires:  libsigc++-devel
18 BuildRequires:  lua51-devel
19 BuildRequires:  pkgconfig
20 BuildRequires:  scons
21 BuildRequires:  zlib-devel
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 Battle Tanks is a funny battle on your desk, where you can choose one
26 of three vehicles and eliminate your enemy using the whole arsenal of
27 weapons. It has original cartoon-like graphics and cool music, it is
28 fun and dynamic, it has several network modes for deathmatch and
29 cooperative - what else is needed to have fun with your friends?
30
31 And all is packed and ready for you in Battle Tanks.
32
33 %prep
34 %setup -q
35 # Proper name for our lua
36 sed -e 's/lua5.1/lua51/g' -i SConscript
37
38 %build
39 %scons \
40     resources_dir=%{_datadir}/%{name} \
41     lib_dir=%{_libdir}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 install -d $RPM_BUILD_ROOT{%{_bindir},%{_libdir},%{_datadir}/%{name},%{_desktopdir},%{_pixmapsdir}}
47
48 install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
49 install bt $RPM_BUILD_ROOT%{_bindir}/%{name}
50 install *.so $RPM_BUILD_ROOT%{_libdir}
51 install src/bt.xpm $RPM_BUILD_ROOT%{_pixmapsdir}/%{name}.xpm
52 cp -r data $RPM_BUILD_ROOT%{_datadir}/%{name}
53
54 # Game is looking for those libs in the datadir folder
55 ln -s %{_libdir}/libbt_objects.so $RPM_BUILD_ROOT%{_datadir}/%{name}/libbt_objects.so
56 ln -s %{_libdir}/libbt.so $RPM_BUILD_ROOT%{_datadir}/%{name}/libbt.so
57
58 %clean
59 rm -rf $RPM_BUILD_ROOT
60
61 %files
62 %defattr(644,root,root,755)
63 %doc ChangeLog README-linux.txt
64 %attr(755,root,root) %{_bindir}/%{name}
65 %{_datadir}/%{name}
66 %{_libdir}/*.so
67 %{_desktopdir}/%{name}.desktop
68 %{_pixmapsdir}/%{name}.xpm
This page took 0.041839 seconds and 2 git commands to generate.