123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- Summary: Library for easy parsing of XMP metadata
- Summary(ja): XMP メタデータを簡単にパースするライブラリ
- Name: exempi
- Version: 2.3.0
- Release: 1%{?_dist_release}
- License: BSD
- Group: System Environment/Libraries
- URL: http://libopenraw.freedesktop.org/wiki/Exempi
- Source0: http://libopenraw.freedesktop.org/download/%{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
- BuildRequires: expat-devel zlib-devel pkgconfig
- BuildRequires: libboost-devel
- BuildRequires: libboost-test
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- Exempi provides a library for easy parsing of XMP metadata. It is a port of
- Adobe XMP SDK to work on UNIX and to be build with GNU automake.
- It includes XMPCore and XMPFiles.
- %package devel
- Summary: Headers for developing programs that will use %{name}
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- This package contains the libraries and header files needed for
- developing with exempi
- %prep
- %setup -q
- %build
- %configure LDFLAGS="-L%{_libdir}" CPPFLAGS="-I%{_includedir}"
- # Disable rpath
- sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
- sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
- make %{?_smp_mflags}
- %check
- make check
- %install
- rm -rf %{buildroot}
- make DESTDIR=%{buildroot} install
- rm -rf %{buildroot}%{_libdir}/*.la
- rm -rf %{buildroot}%{_libdir}/*.a
- %clean
- rm -rf %{buildroot}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-, root, root, -)
- %doc AUTHORS ChangeLog COPYING README
- %{_bindir}/exempi
- %{_libdir}/*.so.*
- %{_mandir}/man1/exempi.1*
- %files devel
- %defattr(-, root, root, -)
- %{_includedir}/exempi-2.0/
- %{_libdir}/*.so
- %{_libdir}/pkgconfig/*.pc
- %changelog
- * Fri Jul 1 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.0-1
- - updated to 2.3.0.
- * Sat May 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
- - update to 2.2.2
- * Fri Jan 3 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 2.2.1-1
- - update to 2.2.1
- - add exempi(1) manpage
- * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
- - new upstream release
- * Mon Jun 13 2011 IWAI, Masaharu <iwai@alib.jp> 2.1.1-1
- - initial build for Vine Linux
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Mon May 3 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.1.1-1
- - Update to 2.1.1
- - Add testsuite execution
- - Removed build patch for gcc-4.4 (fixed in upstream)
- * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Wed Feb 04 2009 Deji Akingunola <dakingun@gmail.com> - 2.1.0-2
- - Add patch to build with gcc-4.4
- * Tue Jan 06 2009 Deji Akingunola <dakingun@gmail.com> - 2.1.0-1
- - Update to 2.1.0
-
- * Sat May 17 2008 Deji Akingunola <dakingun@gmail.com> - 2.0.1-1
- - Update to 2.0.1
- * Wed Apr 02 2008 Deji Akingunola <dakingun@gmail.com> - 2.0.0-1
- - Update to 2.0.0
- * Fri Feb 08 2008 Deji Akingunola <dakingun@gmail.com> - 1.99.9-1
- - Update to 1.99.9
- * Sun Jan 13 2008 Deji Akingunola <dakingun@gmail.com> - 1.99.7-1
- - Update to 1.99.7
- * Mon Dec 03 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.5-1
- - Update to 1.99.5
- * Wed Sep 05 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.4-2
- - Rebuild for expat 2.0
- * Wed Aug 22 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.4-1
- - Update tp 1.99.4
- * Tue Jul 10 2007 Deji Akingunola <dakingun@gmail.com> - 1.99.3-1
- - Initial packaging for Fedora
|