blob: e15f36b234fcd7f9382d147b83a9cb73f64d0ccb (
plain)
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
|
####################################################################
# Compiling and installing Gnome-Pie #
####################################################################
First of all, install all dependancies.
For compilation and linking against GTK3:
sudo apt-get install libgtk-3-dev libcairo2-dev libappindicator3-dev
libgee-dev libxml2-dev libxtst-dev
libgnome-menu-3-dev valac cmake libunique-3.0-dev
libbamf3-dev libwnck-3-dev
For compilation and linking against GTK2:
sudo apt-get install libgtk2.0-dev libcairo2-dev libappindicator-dev
libgee-dev libxml2-dev libxtst-dev
libgnome-menu-dev valac cmake libunique-dev
libbamf-dev libwnck-dev
Then build Gnome-Pie by typing:
./make.sh
Launch it with
./gnome-pie
If you want to install it system wide use
cd build && sudo make install
Have fun with this tool!
|