SipInstallation » History » Version 81
Adrian Georgescu, 04/09/2010 12:28 PM
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 | 35 | Adrian Georgescu | == Development Version == |
51 | 1 | Adrian Georgescu | |
52 | The source code is managed using [http://darcs.net darcs] version control tool. The darcs repository can be fetched with: |
||
53 | 14 | Adrian Georgescu | |
54 | 78 | Adrian Georgescu | SIP SIMPLE client SDK: |
55 | |||
56 | 1 | Adrian Georgescu | {{{ |
57 | darcs get http://devel.ag-projects.com/repositories/python-sipsimple |
||
58 | 52 | Adrian Georgescu | }}} |
59 | 78 | Adrian Georgescu | |
60 | Command Line Tools: |
||
61 | 1 | Adrian Georgescu | |
62 | 70 | Adrian Georgescu | {{{ |
63 | darcs get http://devel.ag-projects.com/repositories/sipclients |
||
64 | }}} |
||
65 | 1 | Adrian Georgescu | |
66 | 70 | Adrian Georgescu | To obtain the incremental changes after the initial get, go to the python-sipsimple and sipclients directory and run: |
67 | |||
68 | 14 | Adrian Georgescu | {{{ |
69 | 59 | Adrian Georgescu | darcs pull -a |
70 | 1 | Adrian Georgescu | }}} |
71 | |||
72 | 67 | Adrian Georgescu | == Building Instructions == |
73 | 1 | Adrian Georgescu | |
74 | Building instructions for the corresponding platforms are available at: |
||
75 | |||
76 | 81 | Adrian Georgescu | * [source:docs/Install.linux Install.linux] - Linux manual installation |
77 | * [source:docs/Install.debian Install.debian] - Debian/Ubuntu installation |
||
78 | 68 | Adrian Georgescu | * [source:docs/Install.osx Install.osx] - MacOSX 10.5 Leopard and 10.6 Snow Leopard |
79 | 57 | Adrian Georgescu | * [wiki:SipUninstall Uninstall guide] |