mirror of
https://github.com/KDE/latte-dock.git
synced 2024-12-28 03:21:38 +03:00
86855e03cb
--update the desktop file naming in order to comply with new guidelines. Concerning also wayland. The new desktop file is named to org.kde.latte-dock.desktop
29 lines
722 B
Bash
Executable File
29 lines
722 B
Bash
Executable File
#!/bin/bash
|
|
#Author: Michail Vourlakos, Smith Ar
|
|
#Summary: Installation script for Latte Dock Panel
|
|
#This script was written and tested on openSuSe Leap 42.1
|
|
set -e
|
|
|
|
build_type=$1
|
|
build_type=${build_type:="Release"}
|
|
|
|
if ! [ -a build ] ; then
|
|
mkdir build
|
|
fi
|
|
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=$build_type ..
|
|
make
|
|
sudo make install
|
|
|
|
oldDeskFile="/usr/share/applications/latte-dock.desktop"
|
|
|
|
# TODO: remove this lines before 0.7 release, it is provided only for
|
|
# the users that use the master branch and built it themselves. It
|
|
# will help them to not have to different desktop files for Latte
|
|
if [ -f $oldDeskFile ] ; then
|
|
sudo rm $oldDeskFile
|
|
echo "Removed old desktop file..."
|
|
fi
|
|
|