Download
You can download Call Control in the following ways:
Install as Debian Package
Add these lines to /etc/apt/sources.list
(substitute unstable
with your release name, like stretch
, if you're not running unstable
):
# AG Projects software deb [signed-by=/usr/share/keyrings/agp-debian-key.gpg] http://ag-projects.com/debian unstable main deb-src [signed-by=/usr/share/keyrings/agp-debian-key.gpg] http://ag-projects.com/debian unstable main
Install the AG Projects debian software signing key:
sudo wget -O /usr/share/keyrings/agp-debian-key.gpg http://download.ag-projects.com/agp-debian-key.gpg
After that, run:
sudo apt-get update
Install Callcontrol:
sudo apt-get install callcontrol
Installing from source
Download and install dependencies
On non Debian installations you can install it from the source.
You will need the following dependencies:
python-application (>= 1.2.8)
python-twisted-core
python-sqlobject
Download and install Call control
You may run the software from its own directory or install it in a directory anywhere in the system.
The software is available as a tar archive at: http://download.ag-projects.com/CallControl/
Extract it using tar xzvf callcontrol-version.tar.gz
and change directory to
the newly created callcontrol directory.
The source code is also managed using darcs version control tool. The darcs repository can be fetched with:
darcs get http://devel.ag-projects.com/repositories/callcontrol
To obtain the incremental changes after the initial get:
cd callcontrol darcs pull -a
After fetching, install the software:
cd callcontrol sudo python setup.py install