update to 2.0.0 [release 2.0.0-1mamba;Wed Jan 23 2013]
This commit is contained in:
parent
eb5862304d
commit
4f4e16e6d3
@ -1,2 +1,4 @@
|
||||
# libopenjpeg
|
||||
|
||||
An open-source JPEG 2000 codec written in C language.
|
||||
|
||||
|
101
libopenjpeg.spec
Normal file
101
libopenjpeg.spec
Normal file
@ -0,0 +1,101 @@
|
||||
%define _version %(echo %version | tr '.' '_')
|
||||
%define majver %(echo %version | cut -d. -f1-2)
|
||||
Name: libopenjpeg
|
||||
Version: 2.0.0
|
||||
Release: 1mamba
|
||||
Summary: An open-source JPEG 2000 codec written in C language
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: http://www.openjpeg.org
|
||||
Source: http://openjpeg.googlecode.com/files/openjpeg-%{version}.tar.gz
|
||||
License: BSD
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: liblcms2-devel
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: libtiff-devel
|
||||
BuildRequires: libz-devel
|
||||
## AUTOBUILDREQ-END
|
||||
Requires(post):%{__install_info}
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
An open-source JPEG 2000 codec written in C language.
|
||||
|
||||
%package -n %{name}-devel
|
||||
Summary: Static libraries and header for %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description -n %{name}-devel
|
||||
An open-source JPEG 2000 codec written in C language.
|
||||
This package contains static libraries and header files need for development.
|
||||
|
||||
%package tools
|
||||
Group: Applications/Graphics
|
||||
Summary: Utility applications for %{name}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description tools
|
||||
This package contains utility applications for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n openjpeg-%{version}
|
||||
#sed -i "s|-o root -g root||" Makefile
|
||||
|
||||
%build
|
||||
%cmake -d build \
|
||||
-DOPENJPEG_INSTALL_LIB_DIR=%{_lib}
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall -C build
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libopenjp2.so.*
|
||||
%doc LICENSE
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/openjpeg-2.0
|
||||
%{_includedir}/openjpeg-2.0/*.h
|
||||
%{_libdir}/libopenjp2.so
|
||||
%{_libdir}/openjpeg-2.0/OpenJPEGConfig.cmake
|
||||
%{_libdir}/openjpeg-2.0/OpenJPEGTargets-noconfig.cmake
|
||||
%{_libdir}/openjpeg-2.0/OpenJPEGTargets.cmake
|
||||
%{_datadir}/doc/openjpeg-2.0/CHANGES
|
||||
%{_datadir}/doc/openjpeg-2.0/LICENSE
|
||||
|
||||
%files tools
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/opj_compress
|
||||
%{_bindir}/opj_decompress
|
||||
%{_bindir}/opj_dump
|
||||
%{_mandir}/man1/opj_compress.1.gz
|
||||
%{_mandir}/man1/opj_decompress.1.gz
|
||||
%{_mandir}/man1/opj_dump.1.gz
|
||||
%{_mandir}/man3/libopenjp2.3.gz
|
||||
|
||||
%changelog
|
||||
* Wed Jan 23 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0.0-1mamba
|
||||
- update to 2.0.0
|
||||
|
||||
* Sat Dec 01 2012 Automatic Build System <autodist@mambasoft.it> 1.5.1-1mamba
|
||||
- update to 1.5.1
|
||||
|
||||
* Fri Nov 20 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3-1mamba
|
||||
- update to 1.3
|
||||
|
||||
* Mon Nov 19 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2-1mamba
|
||||
- package created by autospec
|
Loading…
Reference in New Issue
Block a user