]> git.pld-linux.org Git - packages/poppler.git/blame - poppler.spec
- based on template
[packages/poppler.git] / poppler.spec
CommitLineData
9e116569 1Summary: PDF rendering library
2Name: poppler
3Version: 0.1.1
4Release: 0.1
5License: LGPL
6Group: Libraries
7Source0: http://poppler.freedesktop.org/%{name}-%{version}.tar.gz
8# Source0-md5: d10982c93a1ccee79a14bb277f94990a
9URL: http://poppler.freedesktop.org/
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12%description
13A common PDF rendering library for integrating PDF viewing into desktop
14applications (based on the xpdf-3.0 code base).
15
16%package devel
17Summary: Poppler header files and development documentation
18Group: Development/Libraries
19Requires: %{name} = %{version}-%{release}
20
21%description devel
22Header files and development documentation for the Poppler library.
23
24%package static
25Summary: Poppler static libraries
26Group: Development/Libraries
27Requires: %{name}-devel = %{version}-%{release}
28
29%description static
30Poppler static libraries.
31
32%prep
33%setup -q
34
35%build
36%configure --disable-cairo-output
37%{__make}
38
39%install
40rm -rf $RPM_BUILD_ROOT
41
42%{__make} install \
43 DESTDIR=$RPM_BUILD_ROOT
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48%post -p /sbin/ldconfig
49%postun -p /sbin/ldconfig
50
51%files
52%defattr(644,root,root,755)
53%doc AUTHORS ChangeLog NEWS README* TODO
54%attr(755,root,root) %{_libdir}/lib*.so.*.*
55
56%files devel
57%defattr(644,root,root,755)
58%attr(755,root,root) %{_libdir}/lib*.so
59%{_libdir}/lib*.la
60%{_includedir}/poppler
61%{_pkgconfigdir}/*.pc
62
63%files static
64%defattr(644,root,root,755)
65%{_libdir}/lib*.a
This page took 0.119355 seconds and 4 git commands to generate.