Files
python3-damaris/requirements.debian
T
markusro 6c984956f5
Build Debian Packages / build (bookworm, debian12) (push) Failing after 6m47s
Build Debian Packages / build (bullseye, debian11) (push) Failing after 5m42s
Build Debian Packages / build (trixie, debian13) (push) Failing after 7m24s
gitea worklow improved
2026-03-16 14:42:34 +01:00

23 lines
538 B
Bash

#!/bin/bash
apt-get -y install libcairo2-dev
apt-get -y install python3-scipy python3-lmfit python3-matplotlib python3-tables python3-xdg
apt-get -y install gir1.2-gtksource-3.0
DEBRELEASE=$(lsb_release -cs)
case $DEBRELEASE in
"trixie")
echo "Trixie detected"
apt-get -y install libgirepository-2.0-dev
;;
"bookworm")
echo "Bookworm detected"
apt-get -y install libgirepository1.0-dev
;;
"bullseye")
echo "Bullseye detected"
apt-get -y install libgirepository1.0-dev
;;
*)
echo "not implemented" ; exit 1
;;
esac