Initial import of libopenraw.
This commit is contained in:
parent
1dd98acc07
commit
43822c99b6
@ -0,0 +1 @@
|
||||
libopenraw-0.0.2.tar.gz
|
||||
126
libopenraw.spec
Normal file
126
libopenraw.spec
Normal file
@ -0,0 +1,126 @@
|
||||
Name: libopenraw
|
||||
Version: 0.0.2
|
||||
Release: 5%{?dist}
|
||||
Summary: Decode camera RAW files
|
||||
|
||||
Group: System Environment/Libraries
|
||||
License: LGPL
|
||||
URL: http://%{name}.freedesktop.org/wiki
|
||||
Source0: http://%{name}.freedesktop.org/download/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: libjpeg-devel
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: gtk2-devel
|
||||
|
||||
|
||||
%description
|
||||
libopenraw is an ongoing project to provide a free software
|
||||
implementation for camera RAW files decoding. One of the main reason is
|
||||
that dcraw is not suited for easy integration into applications, and
|
||||
there is a need for an easy to use API to build free software digital
|
||||
image processing application.
|
||||
|
||||
|
||||
%package gnome
|
||||
Summary: GUI components of %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description gnome
|
||||
The %{name}-gnome package contains gui components of %{name}.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
|
||||
%package gnome-devel
|
||||
Summary: Development files for %{name}-gnome
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}-gnome = %{version}-%{release}
|
||||
Requires: %{name}-devel = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
|
||||
%description gnome-devel
|
||||
The %{name}-gnome-devel package contains libraries and header files for
|
||||
developing applications that use %{name}-gnome.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%post gnome -p /sbin/ldconfig
|
||||
%postun gnome -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS ChangeLog COPYING NEWS README TODO
|
||||
%{_libdir}/%{name}.so.*
|
||||
|
||||
|
||||
%files gnome
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/%{name}gnome.so.*
|
||||
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%dir %{_includedir}/%{name}-1.0
|
||||
%{_includedir}/%{name}-1.0/%{name}
|
||||
%{_libdir}/%{name}.so
|
||||
%{_libdir}/pkgconfig/%{name}-1.0.pc
|
||||
|
||||
|
||||
%files gnome-devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_includedir}/%{name}-1.0/%{name}-gnome
|
||||
%{_libdir}/%{name}gnome.so
|
||||
%{_libdir}/pkgconfig/%{name}-gnome-1.0.pc
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu May 03 2007 Trond Danielsen <trond.danielsen@gmail.com> - 0.0.2-5
|
||||
- Added unowned directory to list of files.
|
||||
- Changed license from GPL to LGPL.
|
||||
|
||||
* Wed May 02 2007 Trond Danielsen <trond.danielsen@gmail.com> - 0.0.2-4
|
||||
- Moved gui components to a separate package.
|
||||
|
||||
* Tue May 01 2007 Trond Danielsen <trond.danielsen@gmail.com> - 0.0.2-3
|
||||
- Added missing BuildRequirement.
|
||||
|
||||
* Mon Apr 30 2007 Trond Danielsen <trond.danielsen@gmail.com> - 0.0.2-2
|
||||
- Added missing BuildRequirement.
|
||||
|
||||
* Sun Apr 29 2007 Trond Danielsen <trond.danielsen@gmail.com> - 0.0.2-1
|
||||
- Inital version.
|
||||
Loading…
Reference in New Issue
Block a user