]> git.pld-linux.org Git - packages/crossmingw32-SDL.git/blob - crossmingw32-SDL.spec
- updated to 1.2.12
[packages/crossmingw32-SDL.git] / crossmingw32-SDL.spec
1 %define         realname        SDL
2 Summary:        SDL (Simple DirectMedia Layer) - Game/Multimedia Library - Mingw32 cross version
3 Summary(pl.UTF-8):      SDL (Simple DirectMedia Layer) - Biblioteka do gier/multimediów - wersja skrośna dla Mingw32
4 Name:           crossmingw32-%{realname}
5 Version:        1.2.12
6 Release:        1
7 License:        LGPL
8 Group:          Libraries
9 Source0:        http://www.libsdl.org/release/%{realname}-%{version}.tar.gz
10 # Source0-md5:  544b4554986e51eed6d34435cf9c5f3f
11 Patch0:         %{realname}-mmx-constraints.patch
12 Patch1:         %{realname}-acfix.patch
13 URL:            http://www.libsdl.org/
14 BuildRequires:  autoconf
15 BuildRequires:  automake
16 BuildRequires:  crossmingw32-gcc
17 BuildRequires:  crossmingw32-runtime
18 BuildRequires:  crossmingw32-w32api
19 BuildRequires:  crossmingw32-w32api-dx
20 BuildRequires:  libtool >= 2:1.4d
21 BuildRequires:  nasm
22 BuildRequires:  perl-modules
23 BuildConflicts: crossmingw32-dx70
24 Requires:       crossmingw32-runtime
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %define         no_install_post_strip   1
28
29 %define         target                  i386-mingw32
30 %define         target_platform         i386-pc-mingw32
31
32 %define         _sysprefix              /usr
33 %define         _prefix                 %{_sysprefix}/%{target}
34 %define         _pkgconfigdir           %{_prefix}/lib/pkgconfig
35 %define         _dlldir                 /usr/share/wine/windows/system
36 %define         __cc                    %{target}-gcc
37 %define         __cxx                   %{target}-g++
38
39 %ifarch alpha sparc sparc64 sparcv9
40 # alpha's -mieee and sparc's -mtune=* are not valid for target's gcc
41 %define         optflags        -O2
42 %endif
43
44 %description
45 SDL (Simple DirectMedia Layer) is a library that allows you portable,
46 low level access to a video framebuffer, audio output, mouse, and
47 keyboard. It can support both windowed and DGA modes of XFree86, and
48 it is designed to be portable - applications linked with SDL can also
49 be built on Win32 and BeOS.
50
51 This package contains the cross version for Win32.
52
53 %description -l pl.UTF-8
54 SDL (Simple DirectMedia Layer) jest biblioteką udostępniającą
55 przenośny, niskopoziomowy dostęp do bufora ramki video, wyjścia audio,
56 myszy oraz klawiatury. Może obsługiwać zarówno okienkowy tryb XFree86
57 jak i DGA. Konstruując ją miano na uwadze przenośność: aplikacje
58 konsolidowane z SDL można również budować w systemach Win32 i BeOS.
59
60 Ten pakiet zawiera wersję skrośną dla Win32.
61
62 %description -l pt_BR.UTF-8
63 Esse é o Simple DirectMedia Layer, uma API genérica que dá acesso de
64 baixo nível a áudio, teclado, mouse e vídeo em várias plataformas.
65
66 Essa biblioteca é usada por alguns jogos.
67
68 %package static
69 Summary:        Static SDL library (cross mingw32 version)
70 Summary(pl.UTF-8):      Statyczna biblioteka SDL (wersja skrośna mingw32)
71 Group:          Development/Libraries
72 Requires:       %{name} = %{version}-%{release}
73
74 %description static
75 Static SDL library (cross mingw32 version).
76
77 %description static -l pl.UTF-8
78 Statyczna biblioteka SDL (wersja skrośna mingw32).
79
80 %package dll
81 Summary:        SDL - DLL library for Windows
82 Summary(pl.UTF-8):      SDL - biblioteka DLL dla Windows
83 Group:          Applications/Emulators
84
85 %description dll
86 SDL - DLL library for Windows.
87
88 %description dll -l pl.UTF-8
89 SDL - biblioteka DLL dla Windows.
90
91 %prep
92 %setup -q -n %{realname}-%{version}
93 %patch0 -p1
94 %patch1 -p1
95
96 %build
97 %{__libtoolize}
98 %{__aclocal}
99 %{__autoconf}
100 %configure \
101         --target=%{target} \
102         --host=%{target} \
103         --enable-nasm \
104         --disable-stdio-redirect
105
106 %{__make}
107
108 %install
109 rm -rf $RPM_BUILD_ROOT
110
111 %{__make} install \
112         DESTDIR=$RPM_BUILD_ROOT
113
114 install -d $RPM_BUILD_ROOT{%{_dlldir},%{_sysprefix}/bin}
115 mv -f $RPM_BUILD_ROOT%{_prefix}/bin/*.dll $RPM_BUILD_ROOT%{_dlldir}
116 ln -s %{_bindir}/sdl-config $RPM_BUILD_ROOT%{_sysprefix}/bin/%{target}-sdl-config
117
118 %if 0%{!?debug:1}
119 %{target}-strip --strip-unneeded -R.comment -R.note $RPM_BUILD_ROOT%{_dlldir}/*.dll
120 %{target}-strip -g -R.comment -R.note $RPM_BUILD_ROOT%{_libdir}/*.a
121 %endif
122
123 rm -rf $RPM_BUILD_ROOT%{_datadir}/{aclocal,man}
124
125 %clean
126 rm -rf $RPM_BUILD_ROOT
127
128 %files
129 %defattr(644,root,root,755)
130 %doc BUGS CREDITS README README-SDL.txt TODO WhatsNew
131 %attr(755,root,root) %{_sysprefix}/bin/%{target}-sdl-config
132 %attr(755,root,root) %{_bindir}/sdl-config
133 %{_libdir}/libSDL.dll.a
134 %{_libdir}/libSDL.la
135 %{_libdir}/libSDLmain.a
136 %{_includedir}/SDL
137 %{_pkgconfigdir}/sdl.pc
138
139 %files static
140 %defattr(644,root,root,755)
141 %{_libdir}/libSDL.a
142
143 %files dll
144 %defattr(644,root,root,755)
145 %{_dlldir}/SDL.dll
This page took 0.152368 seconds and 4 git commands to generate.