#!/bin/bash # This is a script shell for compiling and deploying MeshLab in a Linux environment. # # This script can be run only in the oldest supported linux distro # due to linuxdeployqt tool choice (see https://github.com/probonopd/linuxdeployqt/issues/340). # # Requires a Qt environment which is set-up properly, and an accessible # cmake binary. # # Without given arguments, MeshLab will be built in the meshlab/src/build, # the folder meshlab/src/install will be a portable version of MeshLab and # the AppImage will be placed in meshlab/src. # # You can give as argument the build path, the install path (that will contain # the portable version of MeshLab), and the number of cores to use to build MeshLab # (default: 4). # The AppImage will be placed in the parent directory of the install path. # # Example of call: # bash make_it.sh --build_path=path/to/build --install_path=path/to/install -j8 SCRIPTS_PATH="$(dirname "$(realpath "$0")")" SOURCE_PATH=$SCRIPTS_PATH/../../src BUILD_PATH=$SOURCE_PATH/build INSTALL_PATH=$SOURCE_PATH/install CORES="-j4" #check parameters for i in "$@" do case $i in -b=*|--build_path=*) BUILD_PATH="${i#*=}" shift # past argument=value ;; -i=*|--install_path=*) INSTALL_PATH="${i#*=}"/usr/ shift # past argument=value ;; -j*) CORES=$i shift # past argument=value ;; *) # unknown option ;; esac done sh $SCRIPTS_PATH/1_build.sh -b=$BUILD_PATH -i=$INSTALL_PATH $CORES sh $SCRIPTS_PATH/2_deploy.sh $INSTALL_PATH sh $SCRIPTS_PATH/3_appimages.sh $INSTALL_PATH