Project

General

Profile

SipInstallation » History » Version 79

Adrian Georgescu, 04/09/2010 10:31 AM

1 77 Adrian Georgescu
= Installation =
2 20 Adrian Georgescu
3 67 Adrian Georgescu
== Supported Platforms ==
4 23 Adrian Georgescu
5 76 Adrian Georgescu
The following architectures have been tested and are fully supported on the following operating systems:
6 23 Adrian Georgescu
7 76 Adrian Georgescu
 * Linux (i386 and amd64)
8
 * MacOSX (i386)
9 63 Adrian Georgescu
 * [wiki:InstallFreeBSD FreeBSD]
10 23 Adrian Georgescu
11 73 Adrian Georgescu
== Current Release ==
12 70 Adrian Georgescu
13
The software is available as a tar archive at:
14
15
http://download.ag-projects.com/SipClient/
16
17
For people running Debian testing or unstable on an i386 and amd64 architectures there is an official public repository provided by AG Projects. To use it, add these lines in /etc/apt/sources.list
18
19
{{{
20
# AG Projects software
21
deb	http://ag-projects.com/debian unstable main
22
deb-src http://ag-projects.com/debian unstable main
23
}}}
24
25
Install the AG Projects debian software signing key:
26
27
{{{
28
wget http://download.ag-projects.com/agp-debian-gpg.key
29 74 Adrian Georgescu
sudo apt-key add agp-debian-gpg.key
30 70 Adrian Georgescu
}}}
31
32
After that, run:
33
34
{{{
35 72 Adrian Georgescu
sudo apt-get update
36 70 Adrian Georgescu
}}}
37 1 Adrian Georgescu
38 71 Adrian Georgescu
To install the library run:
39
40
{{{
41
sudo apt-get install python-sipsimple
42
}}}
43
44
To install the command line clients run:
45
46
{{{
47
sudo apt-get install sipclients 
48
}}}
49
50
The library depends on ''greenlet'', which is not available as Debian package. You can install it using easy_install command:
51
52
{{{
53
sudo easy_install greenlet
54
}}}
55 70 Adrian Georgescu
56 35 Adrian Georgescu
== Development Version ==
57 1 Adrian Georgescu
58
The source code is managed using [http://darcs.net darcs] version control tool. The darcs repository can be fetched with:
59 14 Adrian Georgescu
60 78 Adrian Georgescu
SIP SIMPLE client SDK:
61
62 1 Adrian Georgescu
{{{
63
darcs get http://devel.ag-projects.com/repositories/python-sipsimple
64 52 Adrian Georgescu
}}}
65 78 Adrian Georgescu
66
Command Line Tools:
67 1 Adrian Georgescu
68 70 Adrian Georgescu
{{{
69
darcs get http://devel.ag-projects.com/repositories/sipclients
70
}}}
71 1 Adrian Georgescu
72 70 Adrian Georgescu
To obtain the incremental changes after the initial get, go to the python-sipsimple and sipclients directory and run:
73
74 14 Adrian Georgescu
{{{
75 59 Adrian Georgescu
darcs pull -a
76 1 Adrian Georgescu
}}}
77
78 67 Adrian Georgescu
== Building Instructions ==
79 1 Adrian Georgescu
80
Building instructions for the corresponding platforms are available at:
81
82 62 Adrian Georgescu
 * [source:docs/Install.linux Install.linux] - Debian/Ubuntu package or manual installation 
83 68 Adrian Georgescu
 * [source:docs/Install.osx Install.osx] - MacOSX 10.5 Leopard and 10.6 Snow Leopard
84 57 Adrian Georgescu
 * [wiki:SipUninstall Uninstall guide]