2013-08-13 13:34:20 +02:00
|
|
|
|
#
|
2013-08-13 14:00:35 +02:00
|
|
|
|
# spec file for package SDL2_ttf
|
2013-08-13 13:34:20 +02:00
|
|
|
|
#
|
2015-01-08 10:58:42 +01:00
|
|
|
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2013-08-13 13:34:20 +02:00
|
|
|
|
#
|
|
|
|
|
# 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/
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
2013-08-13 14:00:35 +02:00
|
|
|
|
Name: SDL2_ttf
|
2013-08-15 15:54:57 +02:00
|
|
|
|
%define lname libSDL2_ttf-2_0-0
|
2013-08-13 14:00:35 +02:00
|
|
|
|
Version: 2.0.12
|
2013-08-13 13:34:20 +02:00
|
|
|
|
Release: 0
|
2015-01-08 10:58:42 +01:00
|
|
|
|
Summary: SDL2 TrueType library
|
2013-08-13 13:34:20 +02:00
|
|
|
|
License: Zlib
|
2013-08-15 15:54:57 +02:00
|
|
|
|
Group: Development/Libraries/X11
|
|
|
|
|
Url: http://libsdl.org/projects/SDL_ttf/
|
|
|
|
|
|
|
|
|
|
#Hg-Clone: http://hg.libsdl.org/SDL_ttf/
|
|
|
|
|
Source: http://libsdl.org/projects/SDL_ttf/release/%name-%version.tar.gz
|
2013-08-13 13:34:20 +02:00
|
|
|
|
Source2: baselibs.conf
|
2015-01-08 10:58:42 +01:00
|
|
|
|
BuildRequires: pkg-config
|
|
|
|
|
BuildRequires: pkgconfig(freetype2)
|
2015-01-08 12:01:07 +01:00
|
|
|
|
BuildRequires: pkgconfig(sdl2)
|
2013-08-13 13:34:20 +02:00
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This is a sample library that allows you to use TrueType fonts in your
|
|
|
|
|
SDL applications.
|
|
|
|
|
|
2013-08-15 15:54:57 +02:00
|
|
|
|
%package -n %lname
|
2015-01-08 10:58:42 +01:00
|
|
|
|
Summary: Simple DirectMedia Layer 2 – Truetype Library
|
2013-08-13 13:34:20 +02:00
|
|
|
|
Group: System/Libraries
|
2015-01-08 10:58:42 +01:00
|
|
|
|
Provides: SDL2_ttf = %version
|
2013-08-13 13:34:20 +02:00
|
|
|
|
|
2013-08-15 15:54:57 +02:00
|
|
|
|
%description -n %lname
|
2013-08-13 13:34:20 +02:00
|
|
|
|
This is a sample library that allows you to use TrueType fonts in your
|
|
|
|
|
SDL applications.
|
|
|
|
|
|
2013-08-13 14:00:35 +02:00
|
|
|
|
%package -n libSDL2_ttf-devel
|
2013-08-13 13:34:20 +02:00
|
|
|
|
Summary: Simple DirectMedia Layer - Truetype Library
|
2013-08-15 15:54:57 +02:00
|
|
|
|
Group: Development/Libraries/X11
|
2015-01-08 10:58:42 +01:00
|
|
|
|
Requires: %lname = %version
|
|
|
|
|
Provides: SDL2_ttf-devel = %version
|
2013-08-13 13:34:20 +02:00
|
|
|
|
|
2013-08-13 14:00:35 +02:00
|
|
|
|
%description -n libSDL2_ttf-devel
|
2013-08-13 13:34:20 +02:00
|
|
|
|
This is a sample library that allows you to use TrueType fonts in your
|
|
|
|
|
SDL applications.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
%build
|
2015-01-08 10:58:42 +01:00
|
|
|
|
%configure --disable-static
|
2013-08-13 13:34:20 +02:00
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
%install
|
2015-01-08 10:58:42 +01:00
|
|
|
|
%make_install
|
|
|
|
|
rm -f "%buildroot/%_libdir"/*.la
|
2013-08-13 13:34:20 +02:00
|
|
|
|
|
2015-01-08 10:58:42 +01:00
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
2013-08-15 15:54:57 +02:00
|
|
|
|
%postun -n %lname -p /sbin/ldconfig
|
2013-08-13 13:34:20 +02:00
|
|
|
|
|
2013-08-15 15:54:57 +02:00
|
|
|
|
%files -n %lname
|
2013-08-13 13:34:20 +02:00
|
|
|
|
%defattr(-,root,root)
|
2013-08-13 14:00:35 +02:00
|
|
|
|
%doc CHANGES.txt COPYING.txt README.txt
|
2015-01-08 10:58:42 +01:00
|
|
|
|
%_libdir/libSDL2_ttf-2*.so.*
|
2013-08-13 13:34:20 +02:00
|
|
|
|
|
2013-08-13 14:00:35 +02:00
|
|
|
|
%files -n libSDL2_ttf-devel
|
2013-08-13 13:34:20 +02:00
|
|
|
|
%defattr(-,root,root)
|
2015-01-08 10:58:42 +01:00
|
|
|
|
%_includedir/SDL2/
|
|
|
|
|
%_libdir/libSDL2_ttf.so
|
|
|
|
|
%_libdir/pkgconfig/SDL2_ttf.pc
|
2013-08-13 13:34:20 +02:00
|
|
|
|
|
|
|
|
|
%changelog
|