LogarithmPlotter/package-linux.sh

30 lines
813 B
Bash
Raw Permalink Normal View History

2021-06-21 22:27:40 +00:00
#!/bin/bash
2022-01-24 15:16:58 +00:00
# Building translations
cd "LogarithmPlotter/i18n/"
bash release.sh
cd ../../
# Deb
2021-10-01 14:36:58 +00:00
python3 setup.py --remove-git-version --command-packages=stdeb.command sdist_dsc \
2022-01-20 11:10:11 +00:00
--package logarithmplotter --copyright-file linux/debian/copyright --suite impish --depends3 "$(cat linux/debian/depends)" --section science \
2022-01-24 18:03:40 +00:00
bdist_deb
2021-08-02 18:01:32 +00:00
# Flatpak building
FLATPAK_BUILDER=$(which flatpak-builder)
if [ -z $FLATPAK_BUILDER ]; then
echo "flatpak-builder not installed. Will not proceed to build flatpak."
else
cd linux/flatpak
flatpak-builder AppDir eu.ad5001.LogarithmPlotter.json --user --force-clean --install
cd ../../
fi
# Snapcraft building
SNAPCRAFT=$(which snapcraft)
if [ -z $SNAPCRAFT ]; then
echo "snapcraft not installed. Will not proceed to build snap"
else
snapcraft
fi