blob: e2534407632854e2afd8024a5a03870b029d797e (
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
|
#!/usr/bin/env bash
#
# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later
### description ################################################################
# Install GTK3 libraries and their dependencies.
### shellcheck #################################################################
# Nothing here.
### dependencies ###############################################################
source "$(dirname "${BASH_SOURCE[0]}")"/jhb/etc/jhb.conf.sh
### variables ##################################################################
SELF_DIR=$(dirname "$(greadlink -f "$0")")
### functions ##################################################################
# Nothing here.
### main #######################################################################
jhb configure "$SELF_DIR"/modulesets/inkscape.modules
jhb build \
pygments
jhb build \
meta-gtk-osx-bootstrap \
meta-gtk-osx-gtk3 \
gtkmm3
|