-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepeg.spec
61 lines (48 loc) · 1.3 KB
/
epeg.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
%define _missing_doc_files_terminate_build 0
Summary: JPEG Scaling Library
Name: epeg
Version: 0.9.0
Release: 1.%(date '+%Y%m%d')
Copyright: BSD
Group: System Environment/Libraries
Source: ftp://ftp.enlightenment.org/pub/epeg/%{name}-%{version}.tar.gz
Packager: Michael Jennings <mej@eterm.org
URL: http://www.enlightenment.org/
#BuildSuggests: libjpeg-devel xorg-x11-devel
Requires: libjpeg
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Epeg is a library which provides facilities for scaling JPEG images
very quickly.
%package devel
Summary: Epeg headers, static libraries, documentation and test programs
Group: System Environment/Libraries
Requires: %{name} = %{version}
%description devel
Headers, static libraries, test programs and documentation for Eet
%prep
%setup -q
%build
%{configure} --prefix=%{_prefix}
%{__make} %{?_smp_mflags} %{?mflags}
%install
%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install
test -x `which doxygen` && sh gendoc || :
%clean
test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
%files
%defattr(-, root, root)
%doc AUTHORS COPYING README
%{_libdir}/libepeg.so*
%{_libdir}/libepeg.la
%files devel
%defattr(-, root, root)
%doc doc/html
%{_libdir}/libepeg.a
%{_bindir}/epeg*
%{_includedir}/Epeg*
%changelog