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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. %define src_name honoka-plugin-ascii
  2. %define version 0.9.1
  3. %define release 2%{_dist_release}
  4. %define honoka_version 0.9.0
  5. Name: scim-honoka-plugin-ascii
  6. Summary: An ASCII input plugin for HONOKA-TAN
  7. Summary(ja): ほのかたんのための ASCII 入力プラグイン
  8. Version: %{version}
  9. Release: %{release}
  10. Group: System Environment/Libraries
  11. License: GPLv2
  12. URL: http://nop.net-p.org/modules/pukiwiki/index.php?%5B%5Bhonoka%5D%5D
  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-ascii is an ASCII input plugin for HONOKA-TAN.
  20. %description -l ja
  21. scim-honoka-plugin-ascii は ASCII 入力プラグインです.
  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