moodbar-vl.spec 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. Name: moodbar
  2. Version: 0.1.2
  3. Release: 1%{?_dist_release}
  4. Summary: Creates a colorful visual representation of the contents of an audio file
  5. Summary(ja): オーディオファイルの内容をカラフルなビジュアル表現で作成します。
  6. License: GPLv2
  7. Group: Applications/Multimedia
  8. URL: http://amarok.kde.org/wiki/Moodbar
  9. Source: http://pwsp.net/~qbob/moodbar-%{version}.tar.gz
  10. Requires: fftw3, gstreamer-plugins, glib2, libxml2
  11. BuildRequires: pkgconfig, fftw3-devel, gstreamer-plugins-devel, glib2-devel, libxml2-devel
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. Prefix: %{_prefix}
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. %description
  17. The Moodbar is an algorithm for creating a colorful visual representation of the contents of an audio file,
  18. giving an idea of its "mood" (this is a rather fanciful term for the simple analysis it actually does).
  19. The Moodbar was invented by Gavin Wood and Simon O'Keefe for inclusion in the Amarok music player.
  20. %description -l ja
  21. Moodbar はカラフルなビジュアル表現でオーディオファイルの内容を作成するためのアルゴリズムです。
  22. その「ムード」(むしろ単純な分析のための空想的な用語です)についてのアイデアを与えます。
  23. Moodbar は、Amarok 音楽プレーヤーへの合併のために、ギャビンウッドとサイモンオキーフによって開発されました。
  24. %prep
  25. %setup -q
  26. %build
  27. %configure --prefix=%{_prefix}
  28. %{__make}
  29. %install
  30. %{__rm} -rf $RPM_BUILD_ROOT
  31. %{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/gstreamer-0.10/libmoodbar.la
  32. %{__make} install DESTDIR=$RPM_BUILD_ROOT
  33. %clean
  34. %{__rm} -rf $RPM_BUILD_ROOT
  35. %post -p /sbin/ldconfig
  36. %postun -p /sbin/ldconfig
  37. %files
  38. %defattr(-,root,root)
  39. %doc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
  40. %{_bindir}/%{name}
  41. %exclude %{_libdir}/gstreamer-0.10/libmoodbar.a
  42. #%{_libdir}/gstreamer-0.10/libmoodbar.la
  43. %{_libdir}/gstreamer-0.10/libmoodbar.so
  44. %changelog
  45. * Fri Jan 2 2009 TOSHI <milk-tea1977@dune.ocn.ne.jp> 0.1.2-1vl5
  46. - Initial Package for Vine Linux
  47. # end of file