systems/arch/PKGBUILD

109 lines
2.5 KiB
Bash

# Maintainer: Tobias Reisinger <tobias@msrg.cc>
# shellcheck disable=SC2034
pkgname=serguzim-system
pkgver=1
pkgrel=1
epoch=
pkgdesc=""
arch=("any")
url="https://git.serguzim.me/serguzim/system"
license=("unknown")
groups=()
makedepends=(
"mkinitcpio" # initramfs
"xdg-desktop-portal-hyprland" # xdg-desktop-portal-impl
"wireplumber" # pipewire-session-manager
"pipewire-jack" # libjack.so
)
depends=(
### BASE
"base" "base-devel"
"linux" "linux-firmware" "linux-headers"
"man-db" "man-pages" "usbutils" "sudo"
"mlocate" "vim"
"exfat-utils" "logrotate" "udisks2"
"zsh" "htop" "git" "tailscale"
"cups" "cups-pdf"
"docker" "docker-buildx" "docker-compose"
"pcsclite"
### OTHER PACKAGE MANAGERS
"flatpak" "nix" "paru-bin"
### ARCH UTILS
"archlinux-contrib" "pacman-contrib"
"arch-audit"
"reflector" # Update arch mirrorlist
"libudev0-shim" # Arch compatibility library
### FONTS
"noto-fonts-emoji" "noto-fonts-extra" "unicode-emoji"
"ttf-dejavu" "ttf-droid" "ttf-liberation" "ttf-opensans" "ttf-roboto"
"gnu-free-fonts"
### GRAPHICAL
"vulkan-tools"
"mesa-vdpau" "libva-mesa-driver" "opencl-mesa"
### APPLICATIONS
"sddm"
"pipewire-pulse" "wireplumber" "vorbis-tools" "alsa-utils"
"gst-plugins-good" "gst-plugins-good" "gst-plugins-bad" "gst-plugins-ugly"
"polkit-gnome"
"alacritty"
"lxappearance" "qt5ct" "gnome-icon-theme-extras" "gnome-themes-extra"
#"thunar" "tumbler" "ffmpegthumbnailer"
#"gtkspell"
"thunderbird"
"qutebrowser-qt6-git" "python-adblock" "python-pynacl" "pdfjs-legacy"
"ungoogled-chromium" "firefox"
"chromium-widevine" "qt6-webengine-widevine"
#"kdeconnect" "keepassxc"
"syncthing"
)
source=(
"etc_locale.conf"
"etc_mkinitcpio.conf"
"etc_pacman.conf"
"etc_pacman.d_default.conf"
"etc_pacman.d_hooks_95-systemd-boot.hook"
"etc_sddm.conf.d_10-general.conf"
"etc_sddm.conf.d_80-autologin.conf"
"etc_sysctl.d_90-serguzim-overrides.conf"
"etc_vconsole.conf"
"etc_xdg_reflector_reflector.conf"
)
sha256sums=(
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
)
backup=(
"boot/loader/loader.conf"
)
. ../utils.sh
package() {
_system_install "etc/locale.conf"
_system_install "etc/mkinitcpio.conf"
_system_install "etc/pacman.conf"
_system_install "etc/pacman.d/default.conf"
_system_install "etc/pacman.d/hooks/95-systemd-boot.hook"
_system_install "etc/sddm.conf.d/10-general.conf"
_system_install "etc/sddm.conf.d/80-autologin.conf"
_system_install "etc/sysctl.d/90-serguzim-overrides.conf"
_system_install "etc/vconsole.conf"
_system_install "etc/xdg/reflector/reflector.conf"
}
# vim: ft=sh