slackbuilds/xap/claws-mail/get_sources.sh
Michal Cieslakiewicz 41f42e74fe xap/claws-mail: updated to version 3.17.8.
Also clawsola theme updated to 0.3.

Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
2020-10-26 12:48:44 +01:00

18 lines
485 B
Bash
Executable File

#!/bin/bash
SRC=claws-mail
VERSION=3.17.8
set -x
wget -O ${SRC}-${VERSION}.tar.xz -c "https://www.claws-mail.org/download.php?file=releases/${SRC}-${VERSION}.tar.xz"
rm -rf themes && mkdir themes || exit 1
for i in A_Ducks_Claw \
Blaue_Klaue \
Coons_Blue \
Fugue \
Gnome \
Tango_1.2.1 \
clawsola-0.3 \
elementary \
gnome-brave; do
wget -O themes/claws-mail-theme_${i}.tar.gz "https://www.claws-mail.org/download.php?file=themes/png/claws-mail-theme_${i}.tar.gz"
done