summaryrefslogtreecommitdiffstats
path: root/packaging/macos/src/cairosvg.sh
blob: bcd2aa6281028380ff7125a90dfbf65e518869ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later

### description ################################################################

# cairosvg is a Python package so we can convert svg to png.

### shellcheck #################################################################

# shellcheck shell=bash # no shebang as this file is intended to be sourced

### dependencies ###############################################################

# Nothing here.

### variables ##################################################################

# https://cairocffi.readthedocs.io/en/stable/
# https://github.com/Kozea/cairocffi
# https://cairosvg.org
# https://github.com/Kozea/CairoSVG
CAIROSVG_PIP="\
  cairocffi==1.2.0\
  cairosvg==2.5.2\
"

### functions ##################################################################

function cairosvg_install
{
  # shellcheck disable=SC2086 # we need word splitting here
  jhb run pip3 install $CAIROSVG_PIP
}

### main #######################################################################

# Nothing here.