summaryrefslogtreecommitdiffstats
path: root/mkosi.conf.d/10-debian-ubuntu/mkosi.prepare
blob: acab113b8c1a8281fd5fae6f18d478f562cd55c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e

if [[ "$1" == "build" ]]; then
    exit 0
fi

mapfile -t PACKAGES < <(jq --raw-output .VolatilePackages[] <"$MKOSI_CONFIG")

apt-cache depends "${PACKAGES[@]}" |
    grep --invert-match --regexp "<" --regexp "|" --regexp systemd | # Remove e.g. <python3:any> and |dbus-broker like results
    grep --extended-regexp "Depends|Suggests|Recommends" |
    sed --quiet 's/.*: //p' | # Get every line with ": " in it and strip it at the same time.
    sort --unique |
    xargs --delimiter '\n' --no-run-if-empty mkosi-install