fcitx-skk-vl.spec 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. %define pkg_name fcitx-skk
  2. %define pkg_version 0.1.4
  3. %define pkg_release 1%{?_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: qt5-qtbase-devel
  19. BuildRequires: fcitx-qt5-devel
  20. Requires: fcitx
  21. Requires: libskk
  22. Requires: skkdic
  23. Requires: fcitx-qt5
  24. Vendor: Project Vine
  25. Distribution: Vine Linux
  26. %description
  27. fcitx-skk is an input method engine for Fcitx, which uses libskk as its backend.
  28. %description -l ja
  29. Fcitx のための SKK インプットメソッドエンジンです。
  30. (注意点)
  31. fcitx-skk を使用する場合には NumLock をオフにして下さい。
  32. NumLock がオンになっていると変換候補の確定ができません。
  33. (この場合にはテンキーで確定することしかできません)
  34. %prep
  35. %{__rm} -rf ${RPM_BUILD_ROOT}
  36. %setup -q
  37. %patch1 -p1
  38. %build
  39. %{__cmake} .
  40. %{__make} %{?_smp_mflags}
  41. %install
  42. %{make_install} PREFIX=%{_prefix}
  43. %{__cp} -a ${RPM_BUILD_ROOT}/usr/local/share/* ${RPM_BUILD_ROOT}%{_datadir}
  44. %{__rm} -rf ${RPM_BUILD_ROOT}/usr/local
  45. %clean
  46. %{__rm} -rf ${RPM_BUILD_ROOT}
  47. %post -p %{_syssbindir}/ldconfig
  48. %postun -p %{_syssbindir}/ldconfig
  49. %files
  50. %defattr(-, root, root)
  51. %doc COPYING README.md
  52. %{_libdir}/fcitx/qt/
  53. %{_libdir}/fcitx/fcitx-skk.so
  54. %{_datadir}/fcitx/
  55. %{_datadir}/icons/
  56. %{_datadir}/locale/
  57. %changelog
  58. * Sun Oct 27 2019 Toshiaki Ara <ara_t@384.jp> 0.1.4-1
  59. - update to 0.1.4
  60. - using qt5
  61. - add BR: qt5-qtbase-devel fcitx-qt5-devel
  62. * Sat Dec 23 2017 Toshiaki Ara <ara_t@384.jp> 0.1.3-2
  63. - add Patch1 (fcitx-0.1.3-skk-newChooseKeyType.patch)
  64. - add new choose key typing (asdfjkl)
  65. * Sat Dec 23 2017 Toshiaki Ara <ara_t@384.jp> 0.1.3-1
  66. - Initial release