]> git.pld-linux.org Git - packages/flatzebra.git/blame_incremental - flatzebra.spec
- converted to UTF-8
[packages/flatzebra.git] / flatzebra.spec
... / ...
CommitLineData
1Summary: A Generic Game Engine library for 2D double-buffering animation
2Summary(pl.UTF-8): Ogólny silnik gier z podwójnie buforowaną animacją 2D
3Name: flatzebra
4Version: 0.1.1
5Release: 1
6License: GPL
7Group: Libraries
8Source0: http://www3.sympatico.ca/sarrazip/dev/%{name}-%{version}.tar.gz
9# Source0-md5: c6c2002f9da4d4dca4934ce41c094965
10Patch0: %{name}-link.patch
11BuildRequires: SDL-devel >= 1.2.7
12BuildRequires: SDL_image-devel >= 1.2.3
13BuildRequires: SDL_mixer-devel >= 1.2.5
14BuildRequires: autoconf
15BuildRequires: automake
16BuildRequires: libstdc++-devel
17BuildRequires: libtool
18BuildRequires: pkgconfig
19Requires: SDL >= 1.2.7
20Requires: SDL_image >= 1.2.3
21Requires: SDL_mixer >= 1.2.5
22BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24%description
25Generic Game Engine library suitable for BurgerSpace, Afternoon
26Stalker and Cosmosmash.
27
28%description -l fr.UTF-8
29Moteur de jeu générique utilisé par BurgerSpace, Afternoon Stalker et
30Cosmosmash.
31
32%description -l pl.UTF-8
33Biblioteka ogólnego silnika gier służąca między innymi dla gier
34BurgerSpace, Afternoon Stalker i Cosmosmash.
35
36%package devel
37Summary: C++ header files for FlatZebra library
38Summary(fr.UTF-8): En-têtes C++ pour la librairie FlatZebra
39Summary(pl.UTF-8): Pliki nagłówkowe C++ biblioteki FlatZebra
40Group: Development/Libraries
41Requires: %{name} = %{version}-%{release}
42Requires: SDL-devel >= 1.2.4
43Requires: SDL_image-devel >= 1.2.2
44Requires: SDL_mixer-devel >= 1.2.4
45Requires: libstdc++-devel
46
47%description devel
48C++ header files for FlatZebra library.
49
50%description devel -l fr.UTF-8
51En-têtes C++ pour la librairie FlatZebra.
52
53%description devel -l pl.UTF-8
54Pliki nagłówkowe C++ biblioteki FlatZebra.
55
56%package static
57Summary: Static FlatZebra library
58Summary(pl.UTF-8): Statyczna biblioteka FlatZebra
59Group: Development/Libraries
60Requires: %{name}-devel = %{version}-%{release}
61
62%description static
63Static FlatZebra library.
64
65%description static -l pl.UTF-8
66Statyczna biblioteka FlatZebra.
67
68%prep
69%setup -q
70%patch0 -p1
71
72%build
73# supplied libtool is broken (no C++ support)
74%{__libtoolize}
75%{__aclocal} -I macros
76%{__autoconf}
77%{__automake}
78%configure \
79 --enable-static
80
81%{__make}
82
83%install
84rm -rf $RPM_BUILD_ROOT
85
86%{__make} install \
87 DESTDIR=$RPM_BUILD_ROOT
88
89%clean
90rm -rf $RPM_BUILD_ROOT
91
92%post -p /sbin/ldconfig
93%postun -p /sbin/ldconfig
94
95%files
96%defattr(644,root,root,755)
97%doc AUTHORS NEWS README
98%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
99
100%files devel
101%defattr(644,root,root,755)
102%attr(755,root,root) %{_libdir}/lib*.so
103%{_libdir}/lib*.la
104%{_includedir}/*
105%{_pkgconfigdir}/*.pc
106
107%files static
108%defattr(644,root,root,755)
109%{_libdir}/lib*.a
This page took 0.069887 seconds and 4 git commands to generate.