Added simple test scripts and packaging information, as well as

debugging tips.
This commit is contained in:
Markus Rosenstihl
2026-03-09 13:58:07 +01:00
parent 8e1245e0f0
commit 2fa5f5aa64
7 changed files with 70 additions and 34 deletions
+17 -2
View File
@@ -1,3 +1,18 @@
#!/bin/bash
sudo apt install libcairo2-dev
sudo apt install libgirepository-2.0-dev gir1.2-gtksource-3.0
sudo apt install python3-scipy python3-lmfit python3-matplotlib
sudo apt install gir1.2-gtksource-3.0
DEBRELEASE=$(lsb_release -cs)
case $DEBRELEASE in
"trixie")
echo "Trixie detected"
sudo apt install libgirepository-2.0-dev
;;
"bookworm")
echo "Bookworm detected"
sudo apt install libgirepository1.0-dev
;;
*)
echo "not implemented" ; exit 1
;;
esac