As you can take from the Ubuntu Apps entry, the package has only been released up to 13.10 yet.
You can, however, try to get it to work by downloading (and modifying, if necesary) a version for an older release. For this, download the latest version for your architecture from here:
http://old-releases.ubuntu.com/ubuntu/pool/universe/l/linuxdcpp/
As far as I can see, the latest version is 1.1.0-1ubuntu2. Download the Debian package (.deb
extension) for your architecture. No open it with the archive manager and navigate to the file DEBIAN/control
. In there, you'll find a line containing the package dependencies.
As you can see, each dependency has it's version prefixed with >=
, so you can install it, even if later versions of the dependencies are installed instead.
Simply install the package using
sudo dpkg -i linuxdcpp*.deb
sudo apt-get install -f
Should a dependency not be available either, get them the same way you did before. Afterwards run
sudo dpkg --configure -a
to finish the installation of packages with dependency problems.