quvi-vl.spec 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Summary: Command line tool for parsing Adobe Flash media stream URLs
  2. Summary(ja): AdobeFlash メディアストリーム URL を解析するためのコマンドラインツール
  3. Name: quvi
  4. Version: 0.2.19
  5. Release: 1%{?_dist_release}
  6. Source0: %{name}-%{version}.tar.xz
  7. License: LGPLv2.1+
  8. Group: Applications/Internet
  9. URL: http://quvi.sourceforge.net/
  10. BuildRequires: gzip
  11. BuildRequires: curl-devel
  12. BuildRequires: lua-devel
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. Packager: Takemikaduchi
  17. %description
  18. libquvi is a small C library that can be used to parse Flash media stream URLs.
  19. It originates from the idea of working around the Flash requirement found on many
  20. media hosting websites (e.g. YouTube).
  21. %package devel
  22. Summary: Development tools for quvi
  23. Summary(ja): quvi の開発環境
  24. Group: Development/Libraries
  25. Requires: %{name} = %{version}-%{release}
  26. Requires: pkgconfig
  27. %description devel
  28. Header files and libraries for building a extension library for the
  29. quvi.
  30. %prep
  31. %setup -q
  32. %build
  33. %configure --disable-static
  34. %{__make} %{?_smp_mflags}
  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. gzip $RPM_BUILD_ROOT%{_mandir}/man1/quvi.1
  40. %clean
  41. %{__rm} -rf ${RPM_BUILD_ROOT}
  42. %files
  43. %defattr(-,root,root,-)
  44. %doc COPYING ChangeLog NEWS README
  45. %{_bindir}/quvi
  46. %{_libdir}/libquvi.so.*
  47. %{_datadir}/quvi/lua
  48. %{_mandir}/man1/quvi.1.gz
  49. %files devel
  50. %defattr(-,root,root,-)
  51. %{_includedir}/quvi
  52. %{_libdir}/libquvi.so
  53. %{_libdir}/pkgconfig/libquvi.pc
  54. %changelog
  55. * Fri Aug 12 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.19-1
  56. - initial build for Vine Linux