view .chezmoiscripts/run_onchange_after_14-install-fedora-packages.sh.tmpl @ 1098:1d163e43854a draft tip

feat: add rainbow colors
author Zeger Van de Vannet <zeger@vandevan.net>
date Mon, 19 May 2025 20:56:09 +0200
parents 9732db099471
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 }}