]> git.pld-linux.org Git - packages/libopenraw.git/blame - libopenraw.spec
- added
[packages/libopenraw.git] / libopenraw.spec
CommitLineData
08b26dc7 1#
2Summary: A library for decoding RAW images
3Name: libopenraw
4Version: 0.0.2
5Release: 1
6License: - (enter GPL/GPL v2/LGPL/BSD/BSD-like/other license name here)
7Group: Applications
8Source0: http://libopenraw.freedesktop.org/download/%{name}-%{version}.tar.gz
9# Source0-md5: eae40ecaa92f69d99b27ae3bad8aa8ae
10URL: http://libopenraw.freedesktop.org/
11BuildRequires: gcc-c++
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15libopenraw is an ongoing project to provide a free software
16implementation for camera RAW files decoding. One of the main reason
17is that [WWW]dcraw is not suited for easy integration into
18applications, and there is a need for an easy to use API to build free
19software digital image processing application.
20
21%package devel
22Summary: Header files for libopenraw library
23Summary(pl.UTF-8): Pliki nagłówkowe biblioteki libopenraw.
24Group: Development/Libraries
25Requires: %{name} = %{version}-%{release}
26
27%description devel
28Header files for libopenraw library.
29
30%description devel -l pl.UTF-8
31Pliki nagłówkowe biblioteki libopenraw.
32
33%package static
34Summary: Static libopenraw library
35Summary(pl.UTF-8): Statyczna biblioteka libopenraw
36Group: Development/Libraries
37Requires: %{name}-devel = %{version}-%{release}
38
39%description static
40Static libopenraw library.
41
42%description static -l pl.UTF-8
43Statyczna biblioteka libopenraw.
44
45%prep
46%setup -q
47
48%build
49%configure
50%{__make}
51
52%install
53rm -rf $RPM_BUILD_ROOT
54
55%{__make} install \
56 DESTDIR=$RPM_BUILD_ROOT
57
58%clean
59rm -rf $RPM_BUILD_ROOT
60
61%post -p /sbin/ldconfig
62%postun -p /sbin/ldconfig
63
64%files
65%defattr(644,root,root,755)
66%doc AUTHORS ChangeLog NEWS README TODO
67%attr(755,root,root) %{_libdir}/*.so.*
68
69%files devel
70%defattr(644,root,root,755)
71%{_libdir}/*.so
72%{_libdir}/*.la
73%{_pkgconfigdir}/*.pc
74%{_includedir}/*
75
76%files static
77%defattr(644,root,root,755)
78%{_libdir}/*.a
This page took 0.070354 seconds and 4 git commands to generate.