Skip to content

Latest commit

 

History

History
69 lines (55 loc) · 1.57 KB

SDL2_image.spec.in

File metadata and controls

69 lines (55 loc) · 1.57 KB
 
Aug 10, 2000
Aug 10, 2000
1
2
3
4
5
6
7
8
9
%define name @PACKAGE@
%define version @VERSION@
%define release 1
Summary: Simple DirectMedia Layer - Sample Image Loading Library
Name: %{name}
Version: %{version}
Release: %{release}
Source0: %{name}-%{version}.tar.gz
May 17, 2006
May 17, 2006
10
License: LGPL
Aug 10, 2000
Aug 10, 2000
11
12
13
14
Group: System Environment/Libraries
BuildRoot: /var/tmp/%{name}-buildroot
Prefix: %{_prefix}
Packager: Hakan Tandogan <hakan@iconsult.com>
Jan 23, 2012
Jan 23, 2012
15
#BuildRequires: SDL2-devel
Mar 7, 2003
Mar 7, 2003
16
17
#BuildRequires: libjpeg-devel
#BuildRequires: libpng-devel
Aug 10, 2000
Aug 10, 2000
18
19
20
21
22
23
24
25
26
27
#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}
Jan 23, 2012
Jan 23, 2012
28
Requires: SDL2-devel
Aug 10, 2000
Aug 10, 2000
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
%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)
Aug 8, 2013
Aug 8, 2013
52
%doc README.txt CHANGES.txt COPYING.txt
Aug 10, 2000
Aug 10, 2000
53
54
55
56
%{prefix}/lib/lib*.so.*
%files devel
%defattr(-,root,root)
Apr 5, 2001
Apr 5, 2001
57
%{prefix}/lib/lib*.a
May 3, 2003
May 3, 2003
58
%{prefix}/lib/lib*.la
Apr 5, 2001
Apr 5, 2001
59
%{prefix}/lib/lib*.so
Jan 23, 2012
Jan 23, 2012
60
%{prefix}/include/*/
Oct 17, 2009
Oct 17, 2009
61
%{prefix}/lib/pkgconfig/*.pc
Aug 10, 2000
Aug 10, 2000
62
63
64
65
66
67
%changelog
* Wed Jan 19 2000 Sam Lantinga
- converted to get package information from configure
* Tue Jan 18 2000 Hakan Tandogan <hakan@iconsult.com>
- initial spec file