libvisual-vl.spec 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. %define lang_name %{name}-0.4
  2. Summary: a framework that delivers audio visualisation
  3. Summary(ja): オーディオの可視化を実現するためのフレームワーク
  4. Name: libvisual
  5. Version: 0.4.0
  6. Release: 4%{?_dist_release}
  7. Source0: %{name}-%{version}.tar.bz2
  8. License: GPLv2
  9. Group: System Environment/Libraries
  10. URL: http://sourceforge.net/projects/libvisual/
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. Vendor: Project Vine
  13. Distribution: Vine Linux
  14. %description
  15. Libvisual is meant as a framework that delivers audio visualisation(read: eye candy generated to the current music you are playing)
  16. to multimedia applications. It works by acting as a middle layer between the visualisation plugin and application.
  17. %description -l ja
  18. Libvisualは音声視覚化を加えるフレームワークです(Read:現在演奏している音楽に合わせて発生する目の保養)
  19. マルチメディアアプリケーションに最適です。視覚化プラグインとアプリケーションの間の中央のレイヤーの働きをすることによって動きます。
  20. %package devel
  21. Summary: Development files for libvisual
  22. Group: Development/Libraries
  23. Requires: %{name} = %{version}-%{release}
  24. %description devel
  25. Development files for libvisual.
  26. %prep
  27. %setup -q
  28. %build
  29. %configure
  30. %{__make} %{?_smp_mflags}
  31. %install
  32. %{__rm} -rf $RPM_BUILD_ROOT
  33. %{__make} DESTDIR=$RPM_BUILD_ROOT install
  34. # unpackaged files
  35. %{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-0.4.la
  36. %find_lang %{lang_name}
  37. %clean
  38. %{__rm} -rf $RPM_BUILD_ROOT
  39. %files -f %{lang_name}.lang
  40. %defattr(-,root,root)
  41. %{_libdir}/libvisual-0.4.so.*
  42. %files devel
  43. %defattr(-,root,root)
  44. %{_includedir}/libvisual-0.4
  45. %{_libdir}/libvisual-0.4.so
  46. #{_libdir}/libvisual-0.4.la
  47. %{_libdir}/pkgconfig/libvisual-0.4.pc
  48. %changelog
  49. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.0-4
  50. - rebuild with rpm-4.8.1 for pkg-config file
  51. * Mon May 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.4.0-3
  52. - split development files to devel subpackage
  53. - changed Group to System Environment/Libraries
  54. * Sun Jan 4 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.4.0-2
  55. - spec in UTF-8
  56. * Fri Jan 2 2009 TOSHI <milk-tea1977@dune.ocn.ne.jp> 0.4.0-1vl5
  57. - initial build for Vine Seed
  58. # end of file