SipInstallation

Version 95 (Adrian Georgescu, 04/18/2010 11:08 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 86 Adrian Georgescu
 * MacOSX (Intel, both 32 and 64 bit architectures)
9 23 Adrian Georgescu
10 73 Adrian Georgescu
== Current Release ==
11 70 Adrian Georgescu
12 70 Adrian Georgescu
The software is available as a tar archive at:
13 70 Adrian Georgescu
14 70 Adrian Georgescu
http://download.ag-projects.com/SipClient/
15 70 Adrian Georgescu
16 93 Adrian Georgescu
=== Debian Unstable ===
17 93 Adrian Georgescu
18 83 Adrian Georgescu
The Debian package versions of the current stable release are:
19 83 Adrian Georgescu
20 89 Adrian Georgescu
|| '''Package Name''' || '''Version'''||'''Description'''||
21 89 Adrian Georgescu
|| python-sipsimple ||0.14.0|| SIP SIMPLE client SDK||
22 1 Adrian Georgescu
|| sipclients|| 0.14.0 || Command Line Tools||
23 92 Adrian Georgescu
24 94 Adrian Georgescu
To install the Debian packages add these lines to: /etc/apt/sources.list
25 70 Adrian Georgescu
26 70 Adrian Georgescu
{{{
27 70 Adrian Georgescu
# AG Projects software
28 70 Adrian Georgescu
deb	http://ag-projects.com/debian unstable main
29 70 Adrian Georgescu
deb-src http://ag-projects.com/debian unstable main
30 70 Adrian Georgescu
}}}
31 70 Adrian Georgescu
32 70 Adrian Georgescu
Install the AG Projects debian software signing key:
33 70 Adrian Georgescu
34 70 Adrian Georgescu
{{{
35 70 Adrian Georgescu
wget http://download.ag-projects.com/agp-debian-gpg.key
36 74 Adrian Georgescu
sudo apt-key add agp-debian-gpg.key
37 70 Adrian Georgescu
}}}
38 70 Adrian Georgescu
39 70 Adrian Georgescu
After that, run:
40 70 Adrian Georgescu
41 70 Adrian Georgescu
{{{
42 1 Adrian Georgescu
sudo apt-get update
43 72 Adrian Georgescu
}}}
44 1 Adrian Georgescu
45 95 Adrian Georgescu
To install only the ''SDK'' run:
46 71 Adrian Georgescu
47 1 Adrian Georgescu
{{{
48 71 Adrian Georgescu
sudo apt-get install python-sipsimple
49 71 Adrian Georgescu
}}}
50 71 Adrian Georgescu
51 95 Adrian Georgescu
To install the ''Command Line Tools'' (this will also install the SDK) run:
52 71 Adrian Georgescu
53 71 Adrian Georgescu
{{{
54 71 Adrian Georgescu
sudo apt-get install sipclients 
55 71 Adrian Georgescu
}}}
56 71 Adrian Georgescu
57 84 Adrian Georgescu
58 84 Adrian Georgescu
== Trunk Version ==
59 84 Adrian Georgescu
60 84 Adrian Georgescu
The trunk is now (2010-04-15) stable and recommended for anyone that wishes to use the library. Known issues are listed in the [http://sipsimpleclient.com/report tickets interface].
61 1 Adrian Georgescu
62 1 Adrian Georgescu
The source code is managed using [http://darcs.net darcs] version control tool. The darcs repository can be fetched with:
63 14 Adrian Georgescu
64 78 Adrian Georgescu
SIP SIMPLE client SDK:
65 78 Adrian Georgescu
66 1 Adrian Georgescu
{{{
67 1 Adrian Georgescu
darcs get http://devel.ag-projects.com/repositories/python-sipsimple
68 52 Adrian Georgescu
}}}
69 78 Adrian Georgescu
70 78 Adrian Georgescu
Command Line Tools:
71 1 Adrian Georgescu
72 70 Adrian Georgescu
{{{
73 70 Adrian Georgescu
darcs get http://devel.ag-projects.com/repositories/sipclients
74 70 Adrian Georgescu
}}}
75 1 Adrian Georgescu
76 70 Adrian Georgescu
To obtain the incremental changes after the initial get, go to the python-sipsimple and sipclients directory and run:
77 70 Adrian Georgescu
78 14 Adrian Georgescu
{{{
79 59 Adrian Georgescu
darcs pull -a
80 1 Adrian Georgescu
}}}
81 1 Adrian Georgescu
82 67 Adrian Georgescu
== Building Instructions ==
83 1 Adrian Georgescu
84 1 Adrian Georgescu
Building instructions for the corresponding platforms are available at:
85 1 Adrian Georgescu
86 82 Adrian Georgescu
 * [source:docs/Install.linux Install.linux] - Linux installation 
87 82 Adrian Georgescu
 * [source:docs/Install.debian Install.debian] - Debian installation 
88 68 Adrian Georgescu
 * [source:docs/Install.osx Install.osx] - MacOSX 10.5 Leopard and 10.6 Snow Leopard
89 57 Adrian Georgescu
 * [wiki:SipUninstall Uninstall guide]