Jami-daemon sous Mobian arm64 (pinephone)

Et pour utiliser le jamid compilé sur un autre mobian sans devoir installer tous les paquets de build,

sudo apt-get install -y libgit2-1.9 libjsoncpp26 libsecp256k1-2 libyaml-cpp0.8 libsdbus-c++2
wget http://<builder.url>/jamid
sudo mv jamid /usr/local/bin/
tmux
jamid -c -d -p

et dans un autre terminal

wget http://<builder.url>/{controller.py,errorsDring.py,jamictrl.py,tester.py}
sudo mv *py /usr/local/bin/
tmux
jamictrl.py -h

usage réel sur alice

jamictrl.py --add-ring-account alice
account=$(jamictrl.py --get-all-accounts)
alice=$(jamictrl.py --get-account-details $account | awk '/Account.username/{print $2}')
# communicate $alice to bob
# wait for dring dring
call=$(jamictrl.py --get-call-list)
jamictrl.py --accept $call
jamictrl.py --hangup $call

et bob

jamictrl.py --add-ring-account bob
account=$(jamictrl.py --get-all-accounts)
bob=$(jamictrl.py --get-account-details $account | awk '/Account.username/{print $2}')
jamictrl.py --call $alice

la librairie controller.py est corrigée selon le ticket #1153
Mon correctif est disponible ici (github)