mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
87 lines
3.1 KiB
Bash
Executable file
87 lines
3.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Build KMFL in the required order: keyboardprocessor kmflcomp libkmfl ibus-kmfl ibus-keyman
|
|
|
|
# It must be run from the keyman/linux directory
|
|
|
|
set -e
|
|
|
|
BASEDIR=`pwd`
|
|
|
|
INSTALLDIR=${INSTALLDIR:-"/usr/local"}
|
|
|
|
CONFIGUREONLY=${CONFIGUREONLY:="no"}
|
|
BUILDONLY=${BUILDONLY:="no"}
|
|
|
|
if [[ "${CONFIGUREONLY}" != "no" && "${BUILDONLY}" != "no" ]]; then
|
|
echo "Only use one of CONFIGUREONLY and BUILDONLY"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "${BUILDONLY}" == "no" ]]; then
|
|
../common/core/desktop/build.sh -t keyboardprocessor configure
|
|
|
|
cd keyboardprocessor/arch/release
|
|
echo "reconfiguring keyboardprocessor meson with prefix ${INSTALLDIR}"
|
|
meson configure -Dprefix=${INSTALLDIR} && ninja reconfigure
|
|
cd $BASEDIR
|
|
fi
|
|
|
|
if [[ "${CONFIGUREONLY}" == "no" ]]; then
|
|
echo "building keyboardprocessor"
|
|
# 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
|
|
# at present.
|
|
../common/core/desktop/build.sh -t keyboardprocessor build tests
|
|
fi
|
|
|
|
for proj in kmflcomp libkmfl ibus-kmfl ibus-keyman; do
|
|
if [ ! -f $proj/configure ]; then
|
|
echo "$proj is not set up with autoreconf. First run 'make reconf' or 'make devreconf'"
|
|
exit 1
|
|
fi
|
|
if [[ "${BUILDONLY}" == "no" ]]; then
|
|
rm -rf build-$proj
|
|
fi
|
|
mkdir -p build-$proj
|
|
cd build-$proj
|
|
if [[ "${BUILDONLY}" == "no" ]]; then
|
|
echo "Configuring $proj"
|
|
if [[ "${INSTALLDIR}" == "/tmp/kmfl" ]]; then # don't install ibus-kmfl or ibus-keyman into ibus
|
|
../$proj/configure KEYMAN_PROC_CFLAGS="-I\$(top_builddir)/../keyboardprocessor/arch/release/include -I\$(top_builddir)/../../common/core/desktop/include" \
|
|
CPPFLAGS="-I\$(top_builddir)/../build-kmflcomp -I\$(top_builddir)/../build-libkmfl" \
|
|
KEYMAN_PROC_LIBS="-L`pwd`/../build-libkmfl/src -L`pwd`/../keyboardprocessor/arch/release/src -lkmnkbp0" \
|
|
LDFLAGS="-L`pwd`/../build-kmflcomp/src -L`pwd`/../build-libkmfl/src" --prefix=${INSTALLDIR} --libexecdir=${INSTALLDIR}/lib/ibus
|
|
else # install ibus-kmfl and ibus-keyman into ibus
|
|
../$proj/configure KEYMAN_PROC_CFLAGS="-I\$(top_builddir)/../keyboardprocessor/arch/release/include -I\$(top_builddir)/../../common/core/desktop/include" \
|
|
CPPFLAGS="-I\$(top_builddir)/../build-kmflcomp -I\$(top_builddir)/../build-libkmfl" \
|
|
LDFLAGS="-L`pwd`/../build-kmflcomp/src -L`pwd`/../build-libkmfl/src" \
|
|
KEYMAN_PROC_LIBS="-L`pwd`/../build-libkmfl/src -L`pwd`/../keyboardprocessor/arch/release/src -lkmnkbp0" \
|
|
--prefix=${INSTALLDIR} --libexecdir=${INSTALLDIR}/lib/ibus --datadir=/usr/share
|
|
fi
|
|
if [ -d ../$proj/include ]; then
|
|
echo "copying $proj include files to kmfl dir"
|
|
mkdir kmfl
|
|
cp -a ../$proj/include/*.h kmfl
|
|
fi
|
|
fi
|
|
if [[ "${CONFIGUREONLY}" == "no" ]]; then
|
|
if [ ! -f config.h ]; then
|
|
echo "$proj has not been configured before building. First run 'make configure'"
|
|
exit 1
|
|
fi
|
|
echo "Building $proj"
|
|
make
|
|
fi
|
|
cd $BASEDIR
|
|
done
|
|
|
|
if [[ "${CONFIGUREONLY}" == "no" ]]; then
|
|
cd keyman-config
|
|
if [ ! -f keyman_config/version.py ]; then
|
|
echo "The version of keyman-config has not been configured before building. First run 'make reconf'"
|
|
fi
|
|
make clean
|
|
make
|
|
cd $BASEDIR
|
|
fi
|