« Previous - Version 62/212 (diff) - Next » - Current version
Adrian Georgescu, 04/16/2009 09:53 am


= Installation guide =

<acronym title="WikiStart, Sip*, depth=3">TOC</acronym>

Supported platforms

Currently i386, amd64 and ppc architectures have been tested and are fully supported on the following operating systems:

  • Linux
  • MacOSX
  • FreeBSD

Porting to other operating systems (like Windows, Symbian and iPhone) is possible as the Python environment and PJSIP are supported by [http://www.pjsip.org/sip_media_features.htm#platforms these platforms].

Debian package

For people running Debian 5.0 or Ubuntu 8.10 a debian package with the [wiki:SipProjectStatus last stable version] is available in the public repository provided by AG Projects. To install the debian package add these lines in /etc/apt/sources.list

{{{
  1. AG Projects software
    deb http://ag-projects.com/debian unstable main
    deb-src http://ag-projects.com/debian unstable main
    }}}

Install the AG Projects debian software signing key:

{{{
wget http://download.ag-projects.com/agp-debian-gpg.key
apt-key add agp-debian-gpg.key
}}}

After that, run:

{{{
sudo apt-get update
sudo apt-get install python-sipsimple sipsimple-cli
}}}

Tar archive

A tar archive with the current stable version is available at:

http://download.ag-projects.com/SipClient/

Development version

The source code is managed using [http://darcs.net darcs] version control tool. The darcs repository can be fetched with:

{{{
darcs get http://devel.ag-projects.com/repositories/python-sipsimple
}}}

To obtain the incremental changes after the initial get, go to the python-sipsimple directory and run:

{{{
cd python-sipsimple
darcs pull -a
}}}

Building instructions

Building instructions for the corresponding platforms are available at:

  • [source:docs/Install.linux Install.linux] - Debian/Ubuntu package or manual installation
  • [source:docs/Install.osx Install.osx] - Mac ports or manual installation

The build process can be fine-tuned for various options (like for using a specific version of underlying pjsip library):

{{{
adigeo@ag-imac3:python setup.py build_ext --help
Common commands: (see '--help-commands' for more)

setup.py build      will build the package underneath 'build/'
setup.py install will install the package

Global options:
--verbose (-v) run verbosely (default)
--quiet (-q) run quietly (turns verbosity off)
--dry-run (-n) don't actually do anything
--help (-h) show detailed help message

Options for 'PJSIP_build_ext' command:
--build-lib (-b) directory for compiled extension modules
--build-temp (-t) directory for temporary files (build by-products)
--inplace (-i) ignore build-lib and put compiled extensions into
the source directory alongside your pure Python
modules
--include-dirs (-I) list of directories to search for header files
(separated by ':')
--define (-D) C preprocessor macros to define
--undef (-U) C preprocessor macros to undefine
--libraries (-l) external C libraries to link with
--library-dirs (-L) directories to search for external C libraries
(separated by ':')
--rpath (-R) directories to search for shared C libraries at
runtime
--link-objects (-O) extra explicit link objects to include in the link
--debug (-g) compile/link with debugging information
--force (-f) forcibly build everything (ignore file timestamps)
--compiler (-c) specify the compiler type
--swig-cpp make SWIG create C++ files (default is C)
--swig-opts list of SWIG command line options
--swig path to the SWIG executable
--pyrex-cplus generate C++ source files
--pyrex-create-listing write errors to a listing file
--pyrex-include-dirs path to the Cython include files (separated by ':')
--pyrex-c-in-temp put generated C files in temp directory
--pyrex-gen-pxi generate .pxi file for public declarations
--pjsip-svn-repo PJSIP SVN repository to checkout from
--pjsip-svn-revision PJSIP SVN revision to fetch
--pjsip-clean-compile Clean PJSIP tree before compilation
--help-compiler list available compilers

}}}

  • [wiki:SipUpgrade Upgrade guide]
  • [wiki:SipUninstall Uninstall guide]