libmediaart-vl.spec 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. Name: libmediaart
  2. Version: 0.4.0
  3. Release: 1%{?_dist_release}
  4. Summary: Library for handling media art
  5. Summary(ja): メディア・アートを取得するためのライブラリ
  6. Group: System Environment/Libraries
  7. License: LGPLv2+
  8. URL: https://git.gnome.org/browse/libmediaart/
  9. Source0: http://download.gnome.org/sources/%{name}/0.4/%{name}-%{version}.tar.xz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: glib2-devel >= 2.35.0
  12. BuildRequires: gobject-introspection-devel >= 1.30.0
  13. BuildRequires: gdk-pixbuf2-devel >= 2.12.0
  14. BuildRequires: gtk-doc
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. Packager: Takemikaduchi
  18. %description
  19. Library tasked with managing, extracting and handling media art cache
  20. %package devel
  21. Summary: Development files for %{name}
  22. Summary(ja): %{name} の開発ファイル
  23. Group: Development/Libraries
  24. Requires: %{name} = %{version}-%{release}
  25. Requires: pkgconfig
  26. %description devel
  27. The %{name}-devel package contains libraries and header files for
  28. developing applications that use %{name}.
  29. %package docs
  30. Summary: Documentation for %{name}
  31. Summary(ja): %{name} 用のドキュメント
  32. Group: Documentation
  33. Requires: %{name} = %{version}-%{release}
  34. BuildArch: noarch
  35. %description docs
  36. This package contains documentation for %{name}.
  37. %prep
  38. %setup -q
  39. %build
  40. autoreconf -if
  41. %configure --disable-static
  42. make %{?_smp_mflags}
  43. %check
  44. %install
  45. rm -rf $RPM_BUILD_ROOT
  46. make install DESTDIR=$RPM_BUILD_ROOT
  47. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  48. %clean
  49. rm -rf $RPM_BUILD_ROOT
  50. %post -p /sbin/ldconfig
  51. %postun -p /sbin/ldconfig
  52. %files
  53. %defattr(-,root,root,-)
  54. %doc AUTHORS ChangeLog COPYING NEWS README
  55. %{_libdir}/%{name}-1.0.so.*
  56. %{_libdir}/girepository-1.0/MediaArt-1.0.typelib
  57. %files devel
  58. %defattr(-,root,root,-)
  59. %{_includedir}/%{name}-1.0
  60. %{_libdir}/%{name}-1.0.so
  61. %{_libdir}/pkgconfig/%{name}-1.0.pc
  62. %{_datadir}/gir-1.0/MediaArt-1.0.gir
  63. %files docs
  64. %defattr(-,root,root,-)
  65. %{_datadir}/gtk-doc/html/%{name}
  66. %changelog
  67. * Sun Apr 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.0-1
  68. - new upstream release
  69. * Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.0-1
  70. - initial build