From cc1a9035d34aaea7a25d43c77f9543ee085744d6 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 28 Jan 2012 11:05:25 -0500 Subject: [PATCH] Added the spec file to Mercurial so we can do hg archive for distribution archives --- .hgignore | 1 - SDL2_image.spec | 69 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 SDL2_image.spec diff --git a/.hgignore b/.hgignore index d1398c7d..7a13fcb7 100644 --- a/.hgignore +++ b/.hgignore @@ -12,5 +12,4 @@ libtool *.la *.lai SDL2_image.pc -SDL2_image.spec showimage diff --git a/SDL2_image.spec b/SDL2_image.spec new file mode 100644 index 00000000..bd640d81 --- /dev/null +++ b/SDL2_image.spec @@ -0,0 +1,69 @@ +%define name SDL2_image +%define version 1.2.13 +%define release 1 + +Summary: Simple DirectMedia Layer - Sample Image Loading Library +Name: %{name} +Version: %{version} +Release: %{release} +Source0: %{name}-%{version}.tar.gz +License: LGPL +Group: System Environment/Libraries +BuildRoot: /var/tmp/%{name}-buildroot +Prefix: %{_prefix} +Packager: Hakan Tandogan +#BuildRequires: SDL2-devel +#BuildRequires: libjpeg-devel +#BuildRequires: libpng-devel +#BuildRequires: libtiff-devel + +%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 devel +Summary: Libraries, includes and more to develop SDL applications. +Group: Development/Libraries +Requires: %{name} +Requires: SDL2-devel + +%description 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 +rm -rf ${RPM_BUILD_ROOT} + +%setup + +%build +CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} +make + +%install +rm -rf $RPM_BUILD_ROOT +make install prefix=$RPM_BUILD_ROOT/%{prefix} + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%doc README CHANGES COPYING +%{prefix}/lib/lib*.so.* + +%files devel +%defattr(-,root,root) +%{prefix}/lib/lib*.a +%{prefix}/lib/lib*.la +%{prefix}/lib/lib*.so +%{prefix}/include/*/ +%{prefix}/lib/pkgconfig/*.pc + +%changelog +* Wed Jan 19 2000 Sam Lantinga +- converted to get package information from configure +* Tue Jan 18 2000 Hakan Tandogan +- initial spec file + +