blob: bb6a3f6c5c72479f1642cbda95d0b8441b71e031 (
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
39
40
41
42
43
44
|
#!/usr/bin/env bash
#
# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later
### description ################################################################
# Install additional tools that are no direct dependencies of Inkscape but that
# we need for e.g. packaging the application.
### shellcheck #################################################################
# Nothing here.
### dependencies ###############################################################
source "$(dirname "${BASH_SOURCE[0]}")"/jhb/etc/jhb.conf.sh
source "$(dirname "${BASH_SOURCE[0]}")"/src/svg2icns.sh
bash_d_include error
### variables ##################################################################
# Nothing here.
### functions ##################################################################
# Nothing here.
### main #######################################################################
if $CI; then # break in CI, otherwise we get interactive prompt by JHBuild
error_trace_enable
fi
#-------------------------------------------- install application bundle creator
jhb build gtkmacbundler
#------------------------------------------------- install svg to icns convertor
svg2icns_install
|