You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
295 B
Bash
15 lines
295 B
Bash
8 years ago
|
#!/bin/bash
|
||
|
#Author: Michail Vourlakos
|
||
|
#Summary: Installation script for Now Dock Panel
|
||
|
#This script was written and tested on openSuSe Leap 42.1
|
||
|
set -e
|
||
|
|
||
|
if ! [ -a build ] ; then
|
||
|
mkdir build
|
||
|
fi
|
||
|
|
||
|
cd build
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE ..
|
||
|
make
|
||
|
sudo make install
|