forked from pool/SDL2_image
Jan Engelhardt
8bdcf850e3
OBS-URL: https://build.opensuse.org/package/show/games/SDL2_image?expand=0&rev=12
96 lines
2.9 KiB
RPMSpec
96 lines
2.9 KiB
RPMSpec
#
|
||
# spec file for package SDL2_image
|
||
#
|
||
# Copyright (c) 2015 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: SDL2_image
|
||
%define lname libSDL2_image-2_0-0
|
||
Version: 2.0.0
|
||
Release: 0
|
||
Summary: SDL2 image loading library
|
||
License: Zlib
|
||
Group: Development/Libraries/X11
|
||
Url: http://libsdl.org/projects/SDL_image/
|
||
|
||
#Hg-Clone: http://hg.libsdl.org/SDL_image/
|
||
Source: http://libsdl.org/projects/SDL_image/release/%name-%version.tar.gz
|
||
Source2: baselibs.conf
|
||
Patch1: bigendian_undefined_s.patch
|
||
BuildRequires: libjpeg-devel
|
||
BuildRequires: libtiff-devel
|
||
BuildRequires: pkgconfig
|
||
BuildRequires: pkgconfig(libpng)
|
||
BuildRequires: pkgconfig(libwebp)
|
||
BuildRequires: pkgconfig(sdl2)
|
||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
||
%description
|
||
This is a simple library to load images of various formats as SDL
|
||
surfaces. This library supports the BMP, PPM, PCX, GIF, JPEG, PNG,
|
||
TIFF and WEBP formats.
|
||
|
||
%package -n %lname
|
||
Summary: Simple DirectMedia Layer 2 – Image Loading Library
|
||
Group: System/Libraries
|
||
Provides: SDL2_image = %version-%release
|
||
|
||
%description -n %lname
|
||
This is a simple library to load images of various formats as SDL
|
||
surfaces. This library supports the BMP, PPM, PCX, GIF, JPEG, PNG,
|
||
TIFF and WEBP formats.
|
||
|
||
%package -n libSDL2_image-devel
|
||
Summary: Development files for the SDL2 image loader library
|
||
Group: Development/Libraries/X11
|
||
Requires: %lname = %version
|
||
Requires: libSDL2-devel
|
||
Provides: SDL2_image-devel = %version-%release
|
||
|
||
%description -n libSDL2_image-devel
|
||
This is a simple library to load images of various formats as SDL
|
||
surfaces. This library supports the BMP, PPM, PCX, GIF, JPEG, PNG,
|
||
TIFF and WEBP formats.
|
||
|
||
%prep
|
||
%setup -q
|
||
%patch -P 1 -p1
|
||
rm -rf external
|
||
|
||
%build
|
||
%configure --disable-png-shared --disable-jpg-shared --disable-tif-shared \
|
||
--disable-webp-shared --disable-static
|
||
make %{?_smp_mflags}
|
||
|
||
%install
|
||
make install DESTDIR="%buildroot"
|
||
rm -f "%buildroot/%_libdir"/*.la
|
||
|
||
%post -n %lname -p /sbin/ldconfig
|
||
%postun -n %lname -p /sbin/ldconfig
|
||
|
||
%files -n %lname
|
||
%defattr(-,root,root)
|
||
%doc CHANGES.txt COPYING.txt README.txt
|
||
%_libdir/libSDL2_image-2*.so.*
|
||
|
||
%files -n libSDL2_image-devel
|
||
%defattr(-,root,root)
|
||
%_includedir/SDL2/
|
||
%_libdir/libSDL2_image.so
|
||
%_libdir/pkgconfig/SDL2_image.pc
|
||
|
||
%changelog
|