Mercurial > dotfiles
comparison .chezmoiscripts/run_onchange_after_14-install-fedora-packages.sh.tmpl @ 1093:9732db099471 draft
feat: enable dotfiles on aarch64/Fedora
author | "Zeger Van de Vannet <zeger@vandevan.net>" |
---|---|
date | Sun, 18 May 2025 16:28:58 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1092:6fb43864241b | 1093:9732db099471 |
---|---|
1 {{ if eq .chezmoi.os "linux" -}} | |
2 {{ if eq .chezmoi.osRelease.name "Fedora Linux Asahi Remix" -}} | |
3 | |
4 | |
5 #!/usr/bin/env bash | |
6 | |
7 set -xe | |
8 | |
9 {{ $packages := list | |
10 "python-devel" | |
11 "make" | |
12 "automake" | |
13 "gcc" | |
14 "gcc-c++" | |
15 "zlib-devel" | |
16 "libsqlite3x-devel" | |
17 "readline-devel" | |
18 "ncurses-devel" | |
19 "libffi-devel" | |
20 "openssl-devel" | |
21 "jq" | |
22 "libevent" | |
23 "libevent-devel" | |
24 "pipx" | |
25 "bison" | |
26 "flex" | |
27 "libnotify" | |
28 "autoconf" | |
29 "fish" -}} | |
30 | |
31 sudo dnf -y install {{ $packages | join " " }} | |
32 | |
33 | |
34 {{- end }} | |
35 {{- end }} |