ruby-sary-vl.spec 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. %define rname sary
  2. %define name ruby-%{rname}
  3. %define version 1.2.0
  4. %define release 1%{?_dist_release}
  5. Summary: Ruby Binding of Sary
  6. Summary(ja): Sary の Ruby バインディング
  7. Name: %{name}
  8. Version: %{version}
  9. Release: %{release}
  10. URL: http://prime.sourceforge.jp/src/
  11. Source0: %{rname}-ruby-%{version}.tar.bz2
  12. License: LGPL
  13. Group: Development/Libraries
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. Requires: ruby
  16. Requires: sary
  17. BuildRequires: ruby-devel
  18. BuildRequires: sary-devel
  19. %description
  20. Ruby Binding of Sary
  21. %description -l ja
  22. Sary の Ruby バインディング
  23. %prep
  24. %setup -q -n %{rname}-ruby-%{version}
  25. %build
  26. %ruby extconf.rb
  27. %{__make}
  28. %install
  29. rm -rf $RPM_BUILD_ROOT
  30. %makeinstall sitearchdir=${RPM_BUILD_ROOT}%rarchdir
  31. %clean
  32. rm -rf $RPM_BUILD_ROOT
  33. %files
  34. %defattr(-,root,root)
  35. %doc ChangeLog README.en.rd README.ja.rd
  36. %doc Reference.en.rd Reference.ja.rd
  37. %{rarchdir}/%{rname}.so
  38. %changelog
  39. * Sat Nov 01 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.0-1
  40. - initial build for VineSeed
  41. * Mon Mar 24 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.0-1vl5
  42. - initial build for VineSeed
  43. ### end of file