Shmoose builds on and includes code from the following projects:
- Login to Jabber server [done]
- Get roster [done]
- Send and receive messages [done]
- Notification on new messages [done]
- XEP-0184: Message Delivery Receipts [done]
- XEP-0199: XMPP Ping [done]
- XEP-0363: HTTP File Upload [done]
- XEP-0333: Chat Markers [done]
- XEP-0045: Multi-User Chat [partial]
- XEP-0198: Stream Management [partial]
- OMEMO Multi-End Message and Object Encryption [ ]
- Add, edit and delete roster items [partial]
- Make database persistent [WIP]
On Linux do the following:
Create a working directory:
* mkdir src * cd src
Fetch swift source:
* wget https://swift.im/downloads/releases/swift-3.0/swift-3.0.tar.gz * tar -xzvf swift-3.0.tar.gz * cd swift-3.0/
Install all dependencies to build swiften:
* ./BuildTools/InstallSwiftDependencies.sh * ./scons Swiften -j<Number of threads>
Install dependencies to build Shmoose (example for Debian):
* sudo apt-get install zlib1g-dev libssl-dev libxml2-dev libstdc++-5-dev libqt5quick5 libqt5quickparticles5 libqt5quickwidgets5 libqt5qml5 libqt5network5 libqt5gui5 libqt5core5a qt5-default libglib2.0-dev libpthread-stubs0-dev
Get Shmoose source code:
* cd .. * git clone https://github.com/geobra/harbour-shmoose
Either:
* open pro file within qtreator
or use command line:
* cd harbour-shmoose * qmake * make -j<Number of threads>
- Get and install Sailfish OS mersdk (tested with version 1608)
- Ssh into mersdk and do the following in a newly created directory
Fetch swift source:
* wget https://swift.im/downloads/releases/swift-3.0/swift-3.0.tar.gz * mkdir swift-3.0-arm * cd swift-3.0-arm * tar --strip-components=1 -xzvf ../swift-3.0.tar.gz
Install all dependencies to build swiften:
* sb2 -t SailfishOS-armv7hl -m sdk-install -R zypper in openssl-devel libiphb-devel libxml2-devel
Patch SConstruct file to do a PIC build of the library archive
Add:
* env.Append(CCFLAGS='-fPIC')
under the line 'env.SConscript = SConscript' on line 14
Build Swiften Library:
* sb2 -t SailfishOS-armv7hl /bin/bash ./scons Swiften
Get Shmoose source code:
* cd .. * git clone https://github.com/geobra/harbour-shmoose * cd harbour-shmoose * mb2 -t SailfishOS-armv7hl build