]> git.pld-linux.org Git - packages/crossmingw32-SDL_image.git/blame - crossmingw32-SDL_image.spec
- updated to 1.2.12
[packages/crossmingw32-SDL_image.git] / crossmingw32-SDL_image.spec
CommitLineData
2b9321d8 1%define realname SDL_image
11374edc
JB
2Summary: Simple DirectMedia Layer - Sample Image Loading Library - MinGW32 cross version
3Summary(pl.UTF-8): Przykładowa biblioteka do ładowania obrazków - wersja skrośna dla MinGW32
2b9321d8 4Name: crossmingw32-%{realname}
b4114a6f 5Version: 1.2.12
f34a67a9 6Release: 1
2c5f2605 7License: Zlib-like
2b9321d8 8Group: Libraries
9Source0: http://www.libsdl.org/projects/SDL_image/release/%{realname}-%{version}.tar.gz
b4114a6f 10# Source0-md5: a0f9098ebe5400f0bdc9b62e60797ecb
2b9321d8 11URL: http://www.libsdl.org/projects/SDL_image/
12BuildRequires: autoconf
13BuildRequires: automake
d18c8144 14BuildRequires: crossmingw32-SDL >= 1.2.10
2b9321d8 15BuildRequires: crossmingw32-gcc
f34a67a9 16BuildRequires: crossmingw32-libjpeg >= 7
b4114a6f 17BuildRequires: crossmingw32-libpng >= 1.5.0
2c5f2605 18BuildRequires: crossmingw32-libtiff >= 4
b4114a6f 19BuildRequires: crossmingw32-libwebp >= 0.1.3
2b9321d8 20BuildRequires: crossmingw32-w32api
f34a67a9
JB
21BuildRequires: libtool >= 2:2.0
22BuildRequires: pkgconfig >= 1:0.9.0
d18c8144 23Requires: crossmingw32-SDL >= 1.2.10
37e61a0a 24Requires: crossmingw32-runtime
2b9321d8 25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27%define no_install_post_strip 1
28
d18c8144
JB
29%define target i386-mingw32
30%define target_platform i386-pc-mingw32
2b9321d8 31
d18c8144
JB
32%define _sysprefix /usr
33%define _prefix %{_sysprefix}/%{target}
c8701c7c 34%define _libdir %{_prefix}/lib
f34a67a9 35%define _pkgconfigdir %{_prefix}/lib/pkgconfig
d18c8144
JB
36%define _dlldir /usr/share/wine/windows/system
37%define __cc %{target}-gcc
38%define __cxx %{target}-g++
2b9321d8 39
f34a67a9
JB
40%ifnarch %{ix86}
41# arch-specific flags (like alpha's -mieee) are not valid for i386 gcc
dcf46c3e 42%define optflags -O2
43%endif
f34a67a9
JB
44# -z options are invalid for mingw linker
45%define filterout_ld -Wl,-z,.*
dcf46c3e 46
2b9321d8 47%description
48This is a simple library to load images of various formats as SDL
b4114a6f
JB
49surfaces. This library currently supports BMP, GIF, JPEG, LBM, PCX,
50PNG, PNM (PBM/PGM/PPM), TGA, TIFF, WebP, XCF and XPM formats.
2b9321d8 51
d18c8144
JB
52This package contains the cross version for Win32.
53
359a03f1
JR
54%description -l pl.UTF-8
55Jest to prosta biblioteka służąca do ładowania różnego formatu
56obrazków jako powierzchni SDL. W chwili obecnej biblioteka obsługuje
b4114a6f
JB
57następujące formaty: BMP, GIF, JPEG, LBM, PCX, PNG, PNM (PBM/PGM/PPM),
58TGA, TIFF, WebP, XCF oraz XPM.
2b9321d8 59
d18c8144
JB
60Ten pakiet zawiera wersję skrośną dla Win32.
61
62%package static
11374edc
JB
63Summary: Static SDL_image library (cross MinGW32 version)
64Summary(pl.UTF-8): Statyczna biblioteka SDL_image (wersja skrośna MinGW32)
d18c8144
JB
65Group: Development/Libraries
66Requires: %{name} = %{version}-%{release}
67
68%description static
11374edc 69Static SDL_image library (cross MinGW32 version).
d18c8144
JB
70
71%description static -l pl.UTF-8
11374edc 72Statyczna biblioteka SDL_image (wersja skrośna MinGW32).
d18c8144 73
2b9321d8 74%package dll
d18c8144
JB
75Summary: SDL_image - DLL library for Windows
76Summary(pl.UTF-8): SDL_image - biblioteka DLL dla Windows
2b9321d8 77Group: Applications/Emulators
d18c8144
JB
78Requires: crossmingw32-SDL-dll >= 1.2.10
79Requires: wine
2b9321d8 80
81%description dll
d18c8144 82SDL_image - DLL library for Windows.
2b9321d8 83
359a03f1 84%description dll -l pl.UTF-8
d18c8144 85SDL_image - biblioteka DLL dla Windows.
2b9321d8 86
87%prep
88%setup -q -n %{realname}-%{version}
2b9321d8 89
90%build
f34a67a9 91export PKG_CONFIG_LIBDIR=%{_prefix}/lib/pkgconfig
2b9321d8 92%{__libtoolize}
93%{__aclocal}
94%{__autoconf}
95%{__automake}
96# no sdl test, because it requires configured wine to work
97%configure \
d18c8144 98 --host=%{target} \
076dc26b 99 --target=%{target} \
d18c8144 100 --with-sdl-prefix=%{_prefix} \
f34a67a9 101 --disable-sdltest
2b9321d8 102
d18c8144
JB
103# LIBS hack for libtool not detecting libraries without .la files
104%{__make} \
105 LIBS="$(%{_bindir}/sdl-config --libs | sed -e 's/\(-lmingw32\|-lSDLmain\)/-Wl,\1/g')"
2b9321d8 106
d18c8144
JB
107%install
108rm -rf $RPM_BUILD_ROOT
2b9321d8 109
d18c8144
JB
110%{__make} install \
111 DESTDIR=$RPM_BUILD_ROOT
112
113install -d $RPM_BUILD_ROOT%{_dlldir}
114mv -f $RPM_BUILD_ROOT%{_prefix}/bin/*.dll $RPM_BUILD_ROOT%{_dlldir}
2b9321d8 115
116%if 0%{!?debug:1}
d18c8144
JB
117%{target}-strip --strip-unneeded -R.comment -R.note $RPM_BUILD_ROOT%{_dlldir}/*.dll
118%{target}-strip -g -R.comment -R.note $RPM_BUILD_ROOT%{_libdir}/*.a
2b9321d8 119%endif
120
2b9321d8 121%clean
122rm -rf $RPM_BUILD_ROOT
123
124%files
125%defattr(644,root,root,755)
d18c8144
JB
126%doc CHANGES README
127%{_libdir}/libSDL_image.dll.a
128%{_libdir}/libSDL_image.la
129%{_includedir}/SDL/SDL_image.h
f34a67a9 130%{_pkgconfigdir}/SDL_image.pc
d18c8144
JB
131
132%files static
133%defattr(644,root,root,755)
134%{_libdir}/libSDL_image.a
2b9321d8 135
136%files dll
137%defattr(644,root,root,755)
d18c8144 138%{_dlldir}/libSDL_image-*.dll
This page took 0.262708 seconds and 4 git commands to generate.