mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 08:09:39 +00:00
Install the icon of the application in the hicolor XDG icon theme; this way it can be properly loaded by XDG menus in the currently set XDG icon theme, without looking in the legacy pixmaps location. As result, adapt the desktop file by removing the full path to the icon (which was already buggy for installations in prefixes different than /usr), so the bare icon name will be searched in the XDG icon theme as expected. Also, remove the manual icon copying in a bundle script, as the icon is installed in the right place now.
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
#!/bin/bash
|
|
# this is a script shell for setting up the application bundle for linux
|
|
# Requires a properly built meshlab.
|
|
#
|
|
# Without given arguments, the application boundle will be placed in the meshlab/src/install
|
|
# directory.
|
|
#
|
|
# You can give as argument the path were meshlab has been installed.
|
|
|
|
SCRIPTS_PATH="$(dirname "$(realpath "$0")")"/../
|
|
SOURCE_PATH=$SCRIPTS_PATH/../../src
|
|
DISTRIB_PATH=$SCRIPTS_PATH/../../distrib
|
|
|
|
|
|
#checking for parameters
|
|
if [ "$#" -eq 0 ]
|
|
then
|
|
INSTALL_PATH=$SOURCE_PATH/install
|
|
else
|
|
INSTALL_PATH=$(realpath $1)
|
|
fi
|
|
|
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$INSTALL_PATH
|
|
|
|
#check if we have an exec in distrib
|
|
if ! [ -f $INSTALL_PATH/usr/bin/meshlab ]
|
|
then
|
|
echo "ERROR: meshlab bin not found inside $INSTALL_PATH/usr/bin/"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p $INSTALL_PATH/usr/share/doc/meshlab
|
|
mkdir -p $INSTALL_PATH/usr/share/icons/Yaru/512x512/apps/
|
|
|
|
cp $SCRIPTS_PATH/resources/meshlab_appimage.desktop $INSTALL_PATH/usr/share/applications/meshlab.desktop
|
|
cp $DISTRIB_PATH/meshlab.png $INSTALL_PATH/usr/share/icons/Yaru/512x512/apps/meshlab.png
|
|
cp $DISTRIB_PATH/LICENSE.txt $INSTALL_PATH/usr/share/doc/meshlab/
|
|
cp $DISTRIB_PATH/privacy.txt $INSTALL_PATH/usr/share/doc/meshlab/
|
|
cp $DISTRIB_PATH/readme.txt $INSTALL_PATH/usr/share/doc/meshlab/
|
|
|
|
for filename in $INSTALL_PATH/usr/lib/meshlab/plugins/*.so; do
|
|
patchelf --set-rpath '$ORIGIN/../' $filename
|
|
done
|