]> git.pld-linux.org Git - packages/cytadela.git/blob - cytadela.spec
e8d915352d537b324abe829721d864707b54484f
[packages/cytadela.git] / cytadela.spec
1 Summary:        A conversion of an Amiga Doom clone "Cytadela"
2 Summary(pl.UTF-8):      Konwersja amigowego klona gry Doom "Cytadela"
3 Name:           cytadela
4 Version:        0.8
5 Release:        1
6 License:        GPL v3+
7 Group:          X11/Applications/Games
8 Source0:        http://dl.sourceforge.net/cytadela/%{name}-%{version}.tar.bz2
9 # Source0-md5:  fc22f35c58d3429a9c449ceda151f9e3
10 Source1:        %{name}.desktop
11 URL:            http://sourceforge.net/projects/cytadela/
12 BuildRequires:  OpenGL-GLU-devel
13 BuildRequires:  OpenGL-devel
14 BuildRequires:  SDL_mixer-devel
15 BuildRequires:  autoconf
16 BuildRequires:  automake
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 Cytadela is a conversion of an Amiga game also called Cytadela,
21 created by Virtual Design team. The conversion contains an
22 implementation of several algorithms taken from the original. Major
23 part of graphics, all music, sounds and levels are taken from the
24 original, but in some cases they are processed and/or modified in
25 order to make them easier to use with the conversion and to correct
26 some bugs.
27
28 %description -l pl.UTF-8
29 Cytadela jest konwersją amigowej gry pod tym samym tytułem,
30 stworzonej przez grupę Virtual Design. W konwersji wykorzystanych
31 jest kilka algorytmów pochodzących z oryginału. Cała muzyka,
32 większość grafiki, wszystkie dźwięki i poziomy pochodzą z wersji
33 oryginalnej, ale w niektórych przypadkach zostały przetworzone i/lub
34 zmodyfikowane w celu ułatwienia wykorzystania ich w konwersji i
35 poprawienia kilku błędów.
36
37 %prep
38 %setup -q -n %{name}
39
40 %build
41 %{__aclocal}
42 %{__autoconf}
43 %{__automake}
44 %configure
45 %{__make}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49 install -d $RPM_BUILD_ROOT{%{_desktopdir},%{_pixmapsdir}}
50
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 install data/icons/%{name}.xpm $RPM_BUILD_ROOT%{_pixmapsdir}
55 install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
56
57 %clean
58 rm -rf $RPM_BUILD_ROOT
59
60 %files
61 %defattr(644,root,root,755)
62 %doc AUTHORS ChangeLog NEWS README data/doc/*.html
63 %attr(755,root,root) %{_bindir}/%{name}
64 %{_datadir}/%{name}
65 %{_desktopdir}/%{name}.desktop
66 %{_pixmapsdir}/%{name}.xpm
This page took 0.048134 seconds and 2 git commands to generate.