]> git.pld-linux.org Git - packages/SDL_gfx.git/blob - SDL_gfx.spec
- updated to 2.0.26 (note: new soname)
[packages/SDL_gfx.git] / SDL_gfx.spec
1 Summary:        SDL graphics drawing primitives and other support functions
2 Summary(pl.UTF-8):      Funkcje rysowania grafiki i inne dla SDL
3 Name:           SDL_gfx
4 Version:        2.0.26
5 Release:        1
6 License:        LGPL v2.1+
7 Group:          Libraries
8 #Source0Download: http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/
9 Source0:        http://www.ferzkopp.net/Software/SDL_gfx-2.0/%{name}-%{version}.tar.gz
10 # Source0-md5:  0b3b5ab5f9e7d10f1faf14d4255db6ba
11 Patch0:         %{name}-local-labels.patch
12 URL:            http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/
13 BuildRequires:  SDL-devel >= 1.2.0
14 BuildRequires:  autoconf >= 2.59-9
15 BuildRequires:  automake
16 BuildRequires:  libtool
17 BuildRequires:  pkgconfig
18 BuildRequires:  rpmbuild(macros) >= 1.566
19 BuildRequires:  sed >= 4.0
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 The SDL_gfx library evolved out of the SDL_gfxPrimitives code.
24
25 The current components of the SDL_gfx library are:
26 - Graphic Primitives (SDL_gfxPrimitves.h)
27 - Rotozoomer (SDL_rotozoom.h)
28 - Framerate control (SDL_framerate.h)
29 - MMX image filters (SDL_imageFilter.h)
30
31 The library is backwards compatible to the above mentioned code. It's
32 is written in plain C and can be used in C++ code.
33
34 %description -l pl.UTF-8
35 Biblioteka SDL_gfx wyewoluowała z kodu SDL_gfxPrimitives.
36
37 Aktualnie SDL_gfx zawiera następujące komponenty:
38 - prymitywy graficzne (SDL_gfxPrimitives.h)
39 - Rotozoomer (SDL_rotozoom.h)
40 - kontrola szybkości rysowania obrazu (SDL_framerate.h)
41 - filtry obrazów używające MMX (SDL_imageFilter.h).
42
43 Biblioteka jest wstecznie kompatybilna z wyżej wspomnianym kodem. Jest
44 napisana w czystym C, może też być używana w kodzie C++.
45
46 %package devel
47 Summary:        Header files and more to develop SDL_gfx applications
48 Summary(pl.UTF-8):      Pliki nagłówkowe do rozwijania aplikacji używających SDL_gfx
49 Group:          Development/Libraries
50 Requires:       %{name} = %{version}-%{release}
51 Requires:       SDL-devel
52
53 %description devel
54 Header files and more to develop SDL_gfx applications.
55
56 %description devel -l pl.UTF-8
57 Pliki nagłówkowe do rozwijania aplikacji używających SDL_gfx.
58
59 %package static
60 Summary:        Static SDL_gfx libraries
61 Summary(pl.UTF-8):      Statyczne biblioteki SDL_gfx
62 Group:          Development/Libraries
63 Requires:       %{name}-devel = %{version}-%{release}
64
65 %description static
66 Static SDL_gfx libraries.
67
68 %description static -l pl.UTF-8
69 Statyczne biblioteki SDL_gfx.
70
71 %prep
72 %setup -q
73 %undos SDL_imageFilter.c
74 %patch0 -p1
75
76 %build
77 %{__libtoolize}
78 %{__aclocal}
79 %{__autoconf}
80 %{__automake}
81
82 %configure \
83 %ifnarch %{ix86}
84         --disable-mmx
85 %endif
86
87 %{__make}
88
89 %install
90 rm -rf $RPM_BUILD_ROOT
91
92 %{__make} install \
93         DESTDIR=$RPM_BUILD_ROOT
94
95 %clean
96 rm -rf $RPM_BUILD_ROOT
97
98 %post   -p /sbin/ldconfig
99 %postun -p /sbin/ldconfig
100
101 %files
102 %defattr(644,root,root,755)
103 %doc README AUTHORS ChangeLog
104 %attr(755,root,root) %{_libdir}/libSDL_gfx.so.*.*.*
105 %attr(755,root,root) %ghost %{_libdir}/libSDL_gfx.so.16
106
107 %files devel
108 %defattr(644,root,root,755)
109 %doc Docs/*
110 %attr(755,root,root) %{_libdir}/libSDL_gfx.so
111 %{_libdir}/libSDL_gfx.la
112 %{_includedir}/SDL/SDL_framerate.h
113 %{_includedir}/SDL/SDL_gfx*.h
114 %{_includedir}/SDL/SDL_imageFilter.h
115 %{_includedir}/SDL/SDL_rotozoom.h
116 %{_pkgconfigdir}/SDL_gfx.pc
117
118 %files static
119 %defattr(644,root,root,755)
120 %{_libdir}/libSDL_gfx.a
This page took 0.073816 seconds and 4 git commands to generate.