prime-dict-vl.spec 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. %define name prime-dict
  2. %define version 1.0.0
  3. %define release 1%{?_dist_release}
  4. Summary: Dictionaries for PRIME
  5. Summary(ja): PRIME の辞書
  6. Name: %{name}
  7. Version: %{version}
  8. Release: %{release}
  9. URL: http://sourceforge.jp/projects/prime/
  10. License: GPL
  11. Group: Applications/Text
  12. Source0: %{name}-%{version}.tar.bz2
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. %description
  15. Dictionaries for PRIME.
  16. %description -l ja
  17. PRIME の辞書パッケージです.
  18. %prep
  19. %setup -q
  20. %build
  21. # fix build:
  22. #% define __libtoolize /bin/true
  23. %configure --with-rubydir=%{rlibdir}
  24. %{__make}
  25. %install
  26. rm -rf $RPM_BUILD_ROOT
  27. %{__make} install DESTDIR=${RPM_BUILD_ROOT} sitelibdir=%{rlibdir}
  28. %clean
  29. rm -rf $RPM_BUILD_ROOT
  30. %check
  31. %{__make} check
  32. %files
  33. %defattr(-,root,root)
  34. %doc ChangeLog COPYING
  35. %{rlibdir}/*
  36. %{_datadir}/prime/*
  37. %changelog
  38. * Sat Nov 01 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.0.0-1
  39. - initial build for VineSeed
  40. * Sat Mar 29 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.0.0-1vl5
  41. - initial build for VineSeed
  42. ### end of file