fcitx-skk-vl.spec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. %define pkg_name fcitx-skk
  2. %define pkg_version 0.1.3
  3. %define pkg_release 2%{?_dist_release}
  4. Summary: An input method engine for Fcitx
  5. Summary(ja): Fcitx のための SKK インプットメソッドエンジン
  6. Name: %{pkg_name}
  7. Version: %{pkg_version}
  8. Release: %{pkg_release}
  9. License: GPLv3
  10. Group: System Environment/Libraries
  11. URL: https://github.com/fcitx/fcitx-skk
  12. Source0: https://github.com/fcitx/fcitx-skk/archive/%{name}-%{version}.tar.gz
  13. Patch1: fcitx-0.1.3-skk-newChooseKeyType.patch
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
  15. BuildRequires: cmake
  16. BuildRequires: fcitx-devel
  17. BuildRequires: libskk-devel
  18. BuildRequires: qt4-devel
  19. Requires: fcitx
  20. Requires: libskk
  21. Requires: skkdic
  22. Requires: qt4
  23. Vendor: Project Vine
  24. Distribution: Vine Linux
  25. %description
  26. fcitx-skk is an input method engine for Fcitx, which uses libskk as its backend.
  27. %description -l ja
  28. Fcitx のための SKK インプットメソッドエンジンです。
  29. (注意点)
  30. fcitx-skk を使用する場合には NumLock をオフにして下さい。
  31. NumLock がオンになっていると変換候補の確定ができません。
  32. (この場合にはテンキーで確定することしかできません)
  33. %prep
  34. %{__rm} -rf ${RPM_BUILD_ROOT}
  35. %setup -q
  36. %patch1 -p1
  37. %build
  38. %{__cmake} .
  39. %{__make} %{?_smp_mflags}
  40. %install
  41. %{make_install} PREFIX=%{_prefix}
  42. %{__cp} -a ${RPM_BUILD_ROOT}/usr/local/share/* ${RPM_BUILD_ROOT}%{_datadir}
  43. %{__rm} -rf ${RPM_BUILD_ROOT}/usr/local
  44. %clean
  45. %{__rm} -rf ${RPM_BUILD_ROOT}
  46. %post -p %{_syssbindir}/ldconfig
  47. %postun -p %{_syssbindir}/ldconfig
  48. %files
  49. %defattr(-, root, root)
  50. %doc COPYING README.md
  51. %{_libdir}/fcitx/qt/
  52. %{_libdir}/fcitx/fcitx-skk.so
  53. %{_datadir}/fcitx/
  54. %{_datadir}/icons/
  55. %{_datadir}/locale/
  56. %changelog
  57. * Sat Dec 23 2017 Toshiaki Ara <ara_t@384.jp> 0.1.3-2
  58. - add Patch1 (fcitx-0.1.3-skk-newChooseKeyType.patch)
  59. - add new choose key typing (asdfjkl)
  60. * Sat Dec 23 2017 Toshiaki Ara <ara_t@384.jp> 0.1.3-1
  61. - Initial release