view .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
line wrap: on
line source

{{ if eq .chezmoi.os "linux" -}}
{{ if eq .chezmoi.osRelease.name "Fedora Linux Asahi Remix" -}}


#!/usr/bin/env bash

set -xe

{{ $packages := list
  "python-devel"
  "make"
  "automake"
  "gcc"
  "gcc-c++"
  "zlib-devel"
  "libsqlite3x-devel"
  "readline-devel"
  "ncurses-devel"
  "libffi-devel"
  "openssl-devel"
  "jq"
  "libevent"
  "libevent-devel"
  "pipx"
  "bison"
  "flex"
  "libnotify"
  "autoconf"
  "fish" -}}

sudo dnf -y install {{ $packages | join " " }}


{{- end }}
{{- end }}