1
0
forked from pool/SDL_image
SDL_image/SDL_image.spec
Cristian Morales Vega d3b16876d2 Accepting request 131949 from home:pgajdos:libpng15
- updated to 1.2.12:
 * Fixed regression in 1.2.11 loading 8-bit PNG images with libpng
 * Fixed loading 8-bit PNG images on Mac OS X
 * SDL_image is now under the zlib license
 * Added WEBP image support
 * Fixed compiling with libpng 1.4
 * Added Android.mk to build on the Android platform
 * Fixed loading HAM6 images with stencil mask
 * Fixed bug loading 15 and 16 bit BMP images

OBS-URL: https://build.opensuse.org/request/show/131949
OBS-URL: https://build.opensuse.org/package/show/games/SDL_image?expand=0&rev=13
2012-08-29 13:18:24 +00:00

92 lines
2.9 KiB
RPMSpec

#
# spec file for package SDL_image
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: SDL_image
BuildRequires: libSDL-devel
BuildRequires: libjpeg-devel
BuildRequires: libpng-devel
BuildRequires: libtiff-devel
BuildRequires: xorg-x11-devel
Url: http://www.libsdl.org/projects/SDL_image/
Summary: Simple DirectMedia Layer--Sample Image Loading Library
License: LGPL-2.1+
Group: System/Libraries
Version: 1.2.12
Release: 0
# removed VisualC.zip, VisualCE.zip, Watcom-OS2.zip, Xcode.tar.gz, Xcode_iPhone.tar.gz from upstream tarball [bnc#508084]
Source: %{name}-%{version}-repack.tar.bz2
Source1: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This is a simple library to load images of various formats as SDL
surfaces. This library supports BMP, PPM, PCX, GIF, JPEG, PNG, and TIFF
formats.
%package -n libSDL_image-1_2-0
Summary: Simple DirectMedia Layer--Sample Image Loading Library
Group: System/Libraries
Provides: SDL_image = %{version}
Obsoletes: SDL_image <= %{version}
%description -n libSDL_image-1_2-0
This is a simple library to load images of various formats as SDL
surfaces. This library supports BMP, PPM, PCX, GIF, JPEG, PNG, and TIFF
formats.
%package -n libSDL_image-devel
Summary: Libraries, includes and more to develop SDL_image applications
Group: Development/Libraries/C and C++
Requires: libSDL-devel
Requires: libSDL_image-1_2-0 = %{version}
Provides: SDL_image-devel = %{version}
Obsoletes: SDL_image-devel <= %{version}
%description -n libSDL_image-devel
This is a simple library to load images of various formats as SDL
surfaces. This library supports BMP, PPM, PCX, GIF, JPEG, PNG, and TIFF
formats.
%prep
%setup -q
%build
%configure --disable-static --with-pic
make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
%{__rm} -f %{buildroot}%{_libdir}/*.la
%post -n libSDL_image-1_2-0 -p /sbin/ldconfig
%postun -n libSDL_image-1_2-0 -p /sbin/ldconfig
%files -n libSDL_image-1_2-0
%defattr(-,root,root)
%doc CHANGES COPYING README
%{_libdir}/lib*.so.*
%files -n libSDL_image-devel
%defattr(-,root,root)
%{_includedir}/SDL
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/*
%changelog