forked from sgpthomas/hourglass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
41 lines (27 loc) · 1.08 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Building and Installing Hourglass
---------------------------------
Dependencies
------------
In order to build and install hourglass, you need the following dependencies:
*libgtk-3-dev
*libgee-0.8-dev
*libnotify-dev
*libgranite-dev
*libcanberra-gtk3-dev
*libglib2.0-dev
To install these, run the following command:
sudo apt-get install libgtk-3-dev libgee-0.8-dev libnotify-dev libgranite-dev libcanberra-gtk3-dev libglib2.0-dev
Install
-------
Run the following commands in succession in order to build and install hourglass
mkdir build
cd build
cmake CMAKE_INSTALL_PREFIX=/usr ../
make
sudo make install #Installs hourglass system wide, otherwise you can run hourglass with 'src/hourglass'
-- or --
sudo ./build.sh #ignore any warning messages that appear
Uninstall
---------
In order to uninstall, run the following command:
sudo make uninstall