-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
79 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
[submodule "fcitx5-hallelujah"] | ||
path = fcitx5-hallelujah | ||
url = https://github.com/fcitx-contrib/fcitx5-hallelujah | ||
[submodule "fcitx5-chinese-addons"] | ||
path = fcitx5-chinese-addons | ||
url = [email protected]:fcitx/fcitx5-chinese-addons.git | ||
[submodule "fcitx5-lua"] | ||
path = fcitx5-lua | ||
url = https://github.com/fcitx/fcitx5-lua.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
scripts/hallelujah.sh $1 | ||
|
||
all_plugins=( | ||
lua | ||
hallelujah | ||
chinese-addons # Optional dependency: lua | ||
) | ||
|
||
for plugin in "${all_plugins[@]}"; do | ||
scripts/$plugin.sh $1 | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule fcitx5-chinese-addons
added at
d84878
Submodule fcitx5-lua
added at
6e0221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
set -e | ||
. ./common.sh chinese-addons $1 | ||
|
||
ARGS=( | ||
-DENABLE_TEST=OFF | ||
-DENABLE_GUI=OFF | ||
) | ||
|
||
if [[ $ARCH != $(uname -m) ]]; then | ||
ARGS+=("-DENABLE_DATA=OFF") | ||
fi | ||
|
||
f5m_configure "${ARGS[@]}" | ||
f5m_build | ||
f5m_install | ||
f5m_make_tarball |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
set -e | ||
|
||
. ./common.sh hallelujah $1 | ||
cbr -D ENABLE_TEST=OFF | ||
cb | ||
ci | ||
tbz | ||
|
||
f5m_configure -DENABLE_TEST=OFF | ||
f5m_build | ||
f5m_install | ||
f5m_make_tarball |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
set -e | ||
. ./common.sh lua $1 | ||
|
||
# Turning on dlopen produces wrong config.h, | ||
# and even fixed it will hard-code lua dylib path in code. | ||
f5m_configure -DENABLE_TEST=OFF -DUSE_DLOPEN=OFF | ||
f5m_build | ||
f5m_install | ||
f5m_make_tarball |