]> git.pld-linux.org Git - packages/SDL.git/blob - SDL.spec
- release 2,
[packages/SDL.git] / SDL.spec
1 Summary:        SDL (Simple DirectMedia Layer) - Game/Multimedia Library
2 Name:           SDL
3 Version:        1.1.4
4 Release:        2
5 License:        LGPL
6 Group:          X11/Libraries
7 Group(pl):      X11/Biblioteki
8 Source0:        http://www.devolution.com/~slouken/SDL/release/%{name}-%{version}.tar.gz
9 URL:            http://www.devolution.com/~slouken/SDL/
10 BuildRequires:  esound-devel
11 BuildRequires:  gtk+-devel >= 1.2.1
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %define         _prefix         /usr/X11R6
15 %define         _mandir         %{_prefix}/man
16
17 %description
18 SDL (Simple DirectMedia Layer) is a library that allows you portable,
19 low level access to a video framebuffer, audio output, mouse, and
20 keyboard. It can support both windowed and DGA modes of XFree86, and
21 it is designed to be portable - applications linked with SDL can also
22 be built on Win32 and BeOS.
23
24 %description -l pl
25 SDL (Simple DirectMedia Layer) jest bibliotek± udostêpniaj±c±
26 przeno¶ny, niskopoziomowy dostep do bufora ramki video, wyj¶cia audio,
27 myszy oraz klawiatury, Moze obs³ugiwaæ zarówno okienkowy tryb XFree86
28 jak i DGA. Konstruuj±c j± miano na uwadze przeno¶no¶æ: aplikacje
29 konsolidowane z SDL mo¿na równie¿ budowac w systemach Win32 i BeOS.
30
31 %package devel
32 Summary:        SDL - Header files
33 Group:          X11/Libraries
34 Group(pl):      X11/Biblioteki
35 Requires:       %{name} = %{version}
36
37 %description devel
38 SDL - Header files.
39
40 %package static
41 Summary:        SDL - static libraries
42 Group:          X11/Libraries
43 Group(pl):      X11/Biblioteki
44 Requires:       %{name} = %{version}
45
46 %description static
47 SDL - static libraries.
48
49 %prep
50 %setup -q
51 %build
52 LDFLAGS="-s"; export LDFLAGS
53 %configure \
54         --enable-nasm \
55         --enable-pthreads \
56         --with-x \
57         --enable-video-x11-dga \
58         --enable-video-x11-mtrr \
59         --enable-video-x11-dgamouse \
60         --enable-esd \
61         --disable-video-svga
62
63 %install
64 rm -rf $RPM_BUILD_ROOT
65
66 %{__make} install \
67         DESTDIR=$RPM_BUILD_ROOT \
68         m4datadir=%{_aclocaldir}
69
70 strip --strip-unneeded $RPM_BUILD_ROOT%{_libdir}/lib*.so.*.*
71
72 gzip -9nf BUGS README WhatsNew
73
74 %post   -p /sbin/ldconfig
75 %postun -p /sbin/ldconfig
76
77 %clean
78 rm -rf $RPM_BUILD_ROOT
79
80 %files
81 %defattr(644,root,root,755)
82 %attr(755,root,root) %{_libdir}/lib*.so.*.*
83
84 %files devel
85 %defattr(644,root,root,755)
86 %doc *gz docs.html docs
87 %attr(755,root,root) %{_bindir}/sdl-config
88 %attr(755,root,root) %{_libdir}/lib*.so
89 %attr(755,root,root) %{_libdir}/lib*.la
90 %{_libdir}/libSDLmain.a
91 %{_includedir}/SDL
92 %{_aclocaldir}/*
93
94 %files static
95 %defattr(644,root,root,755)
96 %{_libdir}/lib*.a
This page took 0.028014 seconds and 3 git commands to generate.