1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-26 23:21:37 +03:00
latte-dock/install.sh

18 lines
362 B
Bash
Raw Normal View History

#!/bin/bash
2016-12-31 00:30:34 +03:00
#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
2017-01-04 02:32:32 +03:00
build_type=$1
build_type=${build_type:="Release"}
if ! [ -a build ] ; then
mkdir build
fi
cd build
2017-01-04 02:32:32 +03:00
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=$build_type ..
make
sudo make install