scim-honoka-plugin-simpleprediction-vl.spec 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. %define src_name honoka-plugin-simpleprediction
  2. %define version 0.9.0
  3. %define release 2%{_dist_release}
  4. %define honoka_version 0.9.0
  5. Name: scim-honoka-plugin-simpleprediction
  6. Summary: A simple prediction plugin for HONOKA-TAN
  7. Summary(ja): ほのかたんのための単純予測プラグイン
  8. Version: %{version}
  9. Release: %{release}
  10. Group: System Environment/Libraries
  11. License: GPLv2
  12. URL: http://sourceforge.jp/projects/scim-imengine/
  13. Source0: %{src_name}-%{version}.tar.bz2
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. BuildRequires: scim-honoka-devel >= %{honoka_version}
  16. BuildRequires: automake
  17. BuildRequires: libtool-ltdl
  18. %description
  19. scim-honoka-plugin-simpleprediction is a simple prediction plugin for HONOKA-TAN.
  20. %description -l ja
  21. scim-honoka-plugin-simpleprediction はほのかたんのための単純予測プラグインです.
  22. %prep
  23. %setup -q -n %{src_name}-%{version}
  24. %build
  25. [[ -f configure ]] || ./bootstrap
  26. %configure
  27. # (tv) parallel build is broken: --> OK???
  28. %{__make} %{?_smp_mflags}
  29. %install
  30. %{__rm} -rf $RPM_BUILD_ROOT
  31. %{__make} DESTDIR=$RPM_BUILD_ROOT install
  32. # remove unpackaged files
  33. rm -f $RPM_BUILD_ROOT%{_libdir}/scim-1.0/*/honoka/*.{a,la}
  34. %find_lang %{src_name}
  35. %clean
  36. %{__rm} -rf $RPM_BUILD_ROOT
  37. %post -p /sbin/ldconfig
  38. %postun -p /sbin/ldconfig
  39. %files -f %{src_name}.lang
  40. %defattr(-,root,root)
  41. %doc AUTHORS COPYING ChangeLog README.jp
  42. %{_libdir}/scim-1.0/*/honoka/*.so
  43. %changelog
  44. * Sat Oct 25 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.9.1-2
  45. - spec in utf-8
  46. * Sat Mar 22 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.9.1-1vl5
  47. - initial build for VineSeed
  48. ### end of file