| | 59 | Debian package installation |
| | 60 | --------------------------- |
| | 61 | |
| | 62 | Add the following lines to /etc/apt/sources.list |
| | 63 | |
| | 64 | # AG Projects software |
| | 65 | deb http://ag-projects.com/debian unstable main |
| | 66 | deb-src http://ag-projects.com/debian unstable main |
| | 67 | |
| | 68 | Install the AG Projects debian software signing key: |
| | 69 | |
| | 70 | wget http://download.ag-projects.com/agp-debian-gpg.key |
| | 71 | apt-key add agp-debian-gpg.key |
| | 72 | |
| | 73 | After that, run: |
| | 74 | |
| | 75 | sudo apt-get update |
| | 76 | sudo apt-get install sip-chatserver |
| | 77 | |
| | 78 | |
| | 79 | Manual installation |
| | 80 | ------------------- |
| | 81 | |
| | 82 | Download the tar archive from http://download.ag-projects.com/ChatServer |
| | 83 | |
| | 84 | Extract the tar archive and run under the newly created directory: |
| | 85 | |
| | 86 | sudo python setup.py install |
| | 87 | |
| | 88 | |
| | 89 | Development version |
| | 90 | ------------------- |
| | 91 | |
| | 92 | The source code is managed using darcs version control tool. The darcs |
| | 93 | repository can be fetched with: |
| | 94 | |
| | 95 | darcs get http://devel.ag-projects.com/repositories/sip-chatserver |
| | 96 | |
| | 97 | To obtain the incremental changes after the initial get, go to the |
| | 98 | sip-chatserver directory and run: |
| | 99 | |
| | 100 | cd sip-chatserver |
| | 101 | darcs pull -a |
| | 102 | |
| | 103 | |