Changeset - 3ac39ee0ae07
[Not reviewed]
0 1 0
vitalyster - 8 years ago 2017-06-20 13:28:44
vitalyster@gmail.com
Update packages_debian_ubuntu.md
1 file changed with 5 insertions and 3 deletions:
0 comments (0 inline, 0 general)
documentation/installation/packages_debian_ubuntu.md
Show inline comments
 
---
 
layout: page
 
title: Spectrum 2
 
redirect_from: "/documentation/installation/debian_ubuntu.html"
 
---
 

	
 
## Installing on Debian Jessie from our packages repository
 

	
 
At the moment we support AMD64 and armhf (for ARM-based machines, like Raspberry PI) binary packages:
 

	
 
        # apt-key adv --keyserver hkp://pool.sks-keyservers.net --recv-keys 1AFDEA51
 
        # echo "deb http://packages.spectrum.im/spectrum2/ jessie main" >> /etc/apt/sources.list.d/spectrum.list
 
        # echo "deb-src http://packages.spectrum.im/spectrum2/ jessie main" >> /etc/apt/sources.list.d/spectrum.list
 
        # apt-get update 
 
        # apt-get install spectrum2 spectrum2-backend-libpurple spectrum2-backend-libcommuni spectrum2-backend-twitter
 

	
 

	
 
## Installing on other Debian/Ubuntu-based distributions
 

	
 
You need to rebuild source libcommuni and spectrum packages from our source package repository:
 

	
 
        $ apt-key adv --keyserver hkp://pool.sks-keyservers.net --recv-keys 1AFDEA51 
 
        $ apt-get install devscripts fakeroot libssl-dev libqt4-dev
 
        $ dget -x http://packages.spectrum.im/spectrum2/pool/main/c/communi/communi_3.4.0-1.dsc
 
        $ cd communi_3.4.0-1 && dpkg-buildpackage -rfakeroot -us -uc  && cd ..
 
        $ echo "deb-src http://packages.spectrum.im/spectrum2/ stretch main" | sudo tee /etc/apt/sources.list.d/spectrum.list
 
        $ echo "deb http://swift.im/packages/debian/sid beta main" | sudo tee -a /etc/apt/sources.list.d/spectrum.list
 
        $ apt-get update
 
        # apt-get install libpurple-dev libswiften-dev libprotobuf-dev libmysqlclient-dev liblog4cxx10-dev protobuf-compiler libpopt-dev libdbus-glib-1-dev libpqxx3-dev cmake libevent-dev libboost-all-dev libidn11-dev libxml2-dev libavahi-client-dev libavahi-common-dev libcurl4-openssl-dev libsqlite3-dev libcommuni-dev
 
        $ dget -x http://packages.spectrum.im/spectrum2/pool/main/s/spectrum2/spectrum2_2.0.3-1.dsc
 
        $ apt-get source communi spectrum2
 
        $ cd communi_3.5.0-1 && DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage -rfakeroot -us -uc  && cd ..
 
        $ cd spectrum2_2.0.3-1 && DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage -rfakeroot -us -uc  && cd ..
 

	
 
When the compilation process has ended the .deb packages for libcommuni and spectrum will be generated in the current directory and can be installed with `dpkg -i < filename.deb >`.
 

	
 
### Troubleshooting
 
If you got gpg verification error, then `dscverify` can not find appropriate keystore, see http://askubuntu.com/a/215008 for fix. This shouldn't happened if you are install keys and build packages from the same account (Note, building doesn't require root)
 

	
 
## Quick packaging with CPack
 

	
 
If you want to test latest changes and save time on full rebuild of all packages, you can quickly create a single package from usual build tree, like:
 

	
 
        # cpack -G DEB -D CPACK_PACKAGE_CONTACT="Your Name <your@email.address>" -D CPACK_PACKAGE_NAME="spectrum2-nightly" -D CPACK_PACKAGE_FILE_NAME="spectrum2-nightly" -D CPACK_PACKAGE_VERSION="2.0.x" -D CPACK_DEBIAN_PACKAGE_DEPENDS="libboost-all-dev (>= 1.49), libc6 (>= 2.14), libswiften2 | libswiften3, libcurl3, liblog4cxx10, libpurple0" -D CPACK_DEBIAN_PACKAGE_CONFLICTS="spectrum2, spectrum2-backend-libpurple, spectrum2-backend-twitter, spectrum2-backend-swiften, spectrum2-dbg, libtransport2.0, libtransport-plugin2.0"
 

	
0 comments (0 inline, 0 general)