Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
add chewing, hangul and sayura (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleoflqj authored Jun 11, 2024
1 parent fe1fba2 commit 1f80002
Show file tree
Hide file tree
Showing 10 changed files with 55 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,12 @@
[submodule "fcitx5-table-extra"]
path = fcitx5-table-extra
url = https://github.com/fcitx/fcitx5-table-extra
[submodule "fcitx5-hangul"]
path = fcitx5-hangul
url = https://github.com/fcitx/fcitx5-hangul
[submodule "fcitx5-sayura"]
path = fcitx5-sayura
url = https://github.com/fcitx/fcitx5-sayura
[submodule "fcitx5-chewing"]
path = fcitx5-chewing
url = https://github.com/fcitx/fcitx5-chewing
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@ Build plugins for [fcitx5-macos](https://github.com/fcitx-contrib/fcitx5-macos).
## Plugins
### Chinese
* [chinese-addons](https://github.com/fcitx/fcitx5-chinese-addons): LGPL-2.1-or-later
* [table-extra](https://github.com/fcitx/fcitx5-table-extra): GPL-3.0-or-later
* [chewing](https://github.com/fcitx/fcitx5-chewing): LGPL-2.1-or-later

### Japanese
* [skk](https://github.com/fcitx/fcitx5-skk): GPL-3.0-or-later
* [anthy](https://github.com/fcitx/fcitx5-anthy): GPL-2.0-or-later

### Korean
* [hangul](https://github.com/fcitx/fcitx5-hangul): GPL-2.0-or-later

### English
* [hallelujah](https://github.com/fcitx-contrib/fcitx5-hallelujah): GPL-3.0-only

### Sinhala
* [sayura](https://github.com/fcitx/fcitx5-sayura): GPL-2.0-or-later

### Thai
* [thai](https://github.com/fcitx/fcitx5-libthai): GPL-2.0-or-later

Expand All @@ -23,6 +31,7 @@ Build plugins for [fcitx5-macos](https://github.com/fcitx-contrib/fcitx5-macos).
* [librime](https://github.com/rime/librime): BSD-3-Clause
* [librime-lua](https://github.com/hchunhui/librime-lua): BSD-3-Clause
* [librime-octagram](https://github.com/lotem/librime-octagram): GPL-3.0-only
* [librime-predict](https://github.com/rime/librime-predict): BSD-3-Clause

### Other
* [lua](https://github.com/fcitx/fcitx5-lua): LGPL-2.1-or-later
Expand All @@ -31,4 +40,5 @@ Build plugins for [fcitx5-macos](https://github.com/fcitx-contrib/fcitx5-macos).
```sh
mkdir -p ~/Library/fcitx5
tar -xjvC ~/Library/fcitx5 -f hallelujah-x86_64.tar.bz2
tar -xjvC ~/Library/fcitx5 -f hallelujah-any.tar.bz2
```
3 changes: 3 additions & 0 deletions all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
set -e

all_plugins=(
chewing
hangul
sayura
skk
lua
hallelujah
Expand Down
1 change: 1 addition & 0 deletions fcitx5-chewing
Submodule fcitx5-chewing added at 192086
1 change: 1 addition & 0 deletions fcitx5-hangul
Submodule fcitx5-hangul added at 90408d
2 changes: 1 addition & 1 deletion fcitx5-rime
Submodule fcitx5-rime updated 13 files
+23 −47 po/ca.po
+23 −47 po/da.po
+23 −47 po/de.po
+23 −47 po/fcitx5-rime.pot
+23 −47 po/he.po
+23 −47 po/ja.po
+23 −47 po/ko.po
+24 −48 po/ru.po
+23 −47 po/tr.po
+23 −47 po/vi.po
+23 −47 po/zh_CN.po
+23 −47 po/zh_TW.po
+1 −1 src/rimeaction.h
1 change: 1 addition & 0 deletions fcitx5-sayura
Submodule fcitx5-sayura added at 23335a
10 changes: 10 additions & 0 deletions scripts/chewing.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
set -e

. ./common.sh chewing $1

install_deps libchewing
f5m_configure
f5m_build
f5m_install libchewing
f5m_split_data
f5m_make_tarball chewing
10 changes: 10 additions & 0 deletions scripts/hangul.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
set -e

. ./common.sh hangul $1

install_deps libhangul
f5m_configure
f5m_build
f5m_install libhangul
f5m_split_data
f5m_make_tarball hangul
9 changes: 9 additions & 0 deletions scripts/sayura.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
set -e

. ./common.sh sayura $1

f5m_configure
f5m_build
f5m_install
f5m_split_data
f5m_make_tarball sayura

0 comments on commit 1f80002

Please sign in to comment.