Where can I find Asterisk 1.4 deb Ubuntu

Does anyone know where I can find Asterisk 1.4 deb for Ubuntu 7.04 feisty?

Sam

Generally binary packages are several releases back. If apt-cache search doesn’t find any, it’s probably not out.

Also, check out the “checkinstall” application.

$ sudo apt-get install checkinstall
$ wget http://ftp.digium.com/pub/telephony/asterisk/asterisk-1.4.4.tar.gz
$ tar -xvzf asterisk-1.4.4.tar.gz
$ cd asterisk-1.4.4
$ ./configure
$ make
$ sudo checkinstall

checkinstall will create a deb by running “make install” and watching what gets installed. Then, it is stored in your package management system.