]> git.pld-linux.org Git - packages/libopenraw.git/commitdiff
- added
authoraredridel <aredridel@pld-linux.org>
Fri, 23 Mar 2007 01:12:02 +0000 (01:12 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    libopenraw.spec -> 1.1

libopenraw.spec [new file with mode: 0644]

diff --git a/libopenraw.spec b/libopenraw.spec
new file mode 100644 (file)
index 0000000..1f122ee
--- /dev/null
@@ -0,0 +1,78 @@
+#
+Summary:       A library for decoding RAW images
+Name:          libopenraw
+Version:       0.0.2
+Release:       1
+License:       - (enter GPL/GPL v2/LGPL/BSD/BSD-like/other license name here)
+Group:         Applications
+Source0:       http://libopenraw.freedesktop.org/download/%{name}-%{version}.tar.gz
+# Source0-md5: eae40ecaa92f69d99b27ae3bad8aa8ae
+URL:           http://libopenraw.freedesktop.org/
+BuildRequires: gcc-c++
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+libopenraw is an ongoing project to provide a free software
+implementation for camera RAW files decoding. One of the main reason
+is that [WWW]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 devel
+Summary:       Header files for libopenraw library
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki libopenraw.
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+
+%description devel
+Header files for libopenraw library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki libopenraw.
+
+%package static
+Summary:       Static libopenraw library
+Summary(pl.UTF-8):     Statyczna biblioteka libopenraw
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static libopenraw library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka libopenraw.
+
+%prep
+%setup -q
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog NEWS README TODO
+%attr(755,root,root) %{_libdir}/*.so.*
+
+%files devel
+%defattr(644,root,root,755)
+%{_libdir}/*.so
+%{_libdir}/*.la
+%{_pkgconfigdir}/*.pc
+%{_includedir}/*
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/*.a
This page took 0.073302 seconds and 4 git commands to generate.