chore(linux): Rename keyboardprocessor to Keyman Core

This commit is contained in:
Eberhard Beilharz 2023-03-08 16:52:10 +01:00
parent 794557f7d5
commit d9e0d8a802
No known key found for this signature in database
GPG key ID: E9140597606020D3

View file

@ -1,6 +1,6 @@
#!/bin/bash
# Build Keyman for Linux: keyboardprocessor ibus-keyman
# Build Keyman for Linux: core ibus-keyman
# It must be run from the keyman/linux directory
@ -25,7 +25,7 @@ if [[ "${BUILDONLY}" == "no" ]]; then
# While we can't pass extra parameters to the configure action
# we need these extra commands
cd ../core/build/arch/release
echo "reconfiguring keyboardprocessor meson with prefix ${INSTALLDIR}"
echo "reconfiguring Keyman Core meson with prefix ${INSTALLDIR}"
meson configure -Dprefix="${INSTALLDIR}" && ninja reconfigure
# We need to build core first before we can configure ibus-keyman!
@ -37,7 +37,7 @@ if [[ "${BUILDONLY}" == "no" ]]; then
fi
if [[ "${CONFIGUREONLY}" == "no" ]]; then
echo "building keyboardprocessor"
echo "building Keyman Core"
cd "$BASEDIR"
# May 2021: For now, running tests here as well. We could move this elsewhere
# in the future if we want to split out the tests, but they run in a couple of seconds