File indexing completed on 2021-12-21 18:19:36
0001 #!/bin/bash 0002 0003 # This script will build and install simon 0004 0005 mkdir build 2> /dev/null 0006 cd build && cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` .. && make && su -c 'make install && ldconfig' && kbuildsycoca4 && echo -e "**** Build completed ****\n\nThe executable file \"simon\" is now ready and has been installed.\n\nIssue \"simon\" to start it." 0007