Skip to content

Commit 7211fb7

Browse files
committed
install instructions for common linux distributions
1 parent 5eb3124 commit 7211fb7

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

INSTALL

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
INSTALL.md

INSTALL.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
#Install Instructions
2+
3+
- [Installation](#installation)
4+
- [Linux](#linux)
5+
- [OS X](#osx)
6+
- [Windows](#windows)
7+
8+
<a name="installation" />
9+
##Installation
10+
11+
<a name="linux" />
12+
###Linux:
13+
14+
Follow ProjectTox-Core [installation instructions](https://github.com/irungentoo/ProjectTox-Core/blob/master/INSTALL.md#linux).
15+
Don't forget to install it after building it.
16+
17+
Additionally to the tox build dependencies, you will need:
18+
19+
```bash
20+
valac (>=0.14)
21+
cmake (>=2.6.0)
22+
libgtk-3-dev (>=3.2)
23+
libgee-dev (1.0)
24+
```
25+
26+
On Ubuntu:
27+
28+
```bash
29+
apt-get install valac cmake libgtk-3-dev libgee-dev
30+
```
31+
32+
On Fedora:
33+
34+
```bash
35+
yum install vala cmake libgtk gtk3-devel libgee06-devel
36+
```
37+
38+
On Arch Linux: (There is an [aur-package](https://aur.archlinux.org/packages/venom-git))
39+
40+
```bash
41+
pacman -S cmake gtk3 libgee06
42+
```
43+
44+
After you installed the dependencies, clone, build and install venom:
45+
46+
```bash
47+
git clone git://github.com/naxuroqa/Venom.git
48+
cd Venom
49+
mkdir build
50+
cd build
51+
cmake ..
52+
make
53+
sudo make install
54+
```
55+
56+
<a name="osx" />
57+
###OS X:
58+
59+
To be done
60+
61+
<a name="windows" />
62+
###Windows:
63+
64+
To be done

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
Venom, a graphical user interface for [ProjectTox Core](https://github.com/irungentoo/ProjectTox-Core) written in [Vala](https://wiki.gnome.org/Vala).
44

5+
## Installing
6+
7+
* Read [INSTALL.md](INSTALL.md)
58

69
## Contributing
710

0 commit comments

Comments
 (0)