File indexing completed on 2025-04-27 05:00:27
0001 #!/usr/bin/env bash 0002 0003 # exit on any error 0004 set -Ee 0005 0006 # Enter the directory that contains this script file 0007 cd $(dirname $0) 0008 TOP=$( pwd -L ) 0009 0010 # Installation 0011 sudo apt-get install qml-module-qmltermwidget 0012 if [[ ! -d build-testing ]] ; then 0013 mkdir build-testing 0014 fi 0015 cd build-testing 0016 cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DKDE_INSTALL_LIBDIR=lib -DKDE_INSTALL_USE_QT_SYS_PATHS=ON 0017 make -j4 0018 sudo make install 0019 0020 echo "Installation complete!" 0021 echo "To run, invoke: MycroftSkillInstaller"