grilo-vl.spec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. Name: grilo
  2. Version: 0.2.2
  3. Release: 1%{?_dist_release}
  4. Summary: Framework for multimedia developers
  5. Summary(ja): マルチメディア開発者用のフレームワーク
  6. Group: System Environment/Libraries
  7. License: LGPLv2
  8. URL: https://live.gnome.org/Grilo
  9. Source0: http://download.gnome.org/sources/%{name}/0.2/%{name}-%{version}.tar.xz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: glib2-devel >= 2.29.10
  12. BuildRequires: libxml2-devel
  13. BuildRequires: gobject-introspection-devel
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. Packager: Takemikaduchi
  17. %description
  18. Grilo is a framework for browsing and searching media content from various
  19. sources using a single API.
  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. %prep
  30. %setup -q
  31. %build
  32. %configure --disable-static
  33. make %{?_smp_mflags}
  34. %check
  35. %install
  36. rm -rf $RPM_BUILD_ROOT
  37. make install DESTDIR=$RPM_BUILD_ROOT
  38. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  39. %clean
  40. rm -rf $RPM_BUILD_ROOT
  41. %post -p /sbin/ldconfig
  42. %postun -p /sbin/ldconfig
  43. %files
  44. %defattr(-,root,root,-)
  45. %doc AUTHORS ChangeLog COPYING NEWS README
  46. %{_bindir}/grl-inspect-0.2
  47. %{_libdir}/libgrilo-0.2.so.*
  48. %{_libdir}/girepository-1.0/Grl-0.2.typelib
  49. %{_mandir}/man1/grl-inspect.1.gz
  50. %files devel
  51. %defattr(-,root,root,-)
  52. %{_includedir}/%{name}-0.2
  53. %{_libdir}/*.so
  54. %{_libdir}/pkgconfig/%{name}-0.2.pc
  55. %{_datadir}/gir-1.0/Grl-0.2.gir
  56. %changelog
  57. * Fri Oct 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.2-1
  58. - new upstream release
  59. * Mon Sep 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.0-1
  60. - initial build