systems/arch/PKGBUILD

109 lines
2.5 KiB
Bash
Raw Permalink Normal View History

2022-12-20 17:34:26 +00:00
# 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=()
2023-01-27 16:01:48 +00:00
makedepends=(
"mkinitcpio" # initramfs
2023-07-02 11:42:44 +00:00
"xdg-desktop-portal-hyprland" # xdg-desktop-portal-impl
2023-01-27 16:01:48 +00:00
"wireplumber" # pipewire-session-manager
"pipewire-jack" # libjack.so
2023-07-02 11:42:44 +00:00
)
2022-12-20 17:34:26 +00:00
depends=(
### BASE
2023-07-02 11:42:44 +00:00
"base" "base-devel"
2022-12-20 17:34:26 +00:00
"linux" "linux-firmware" "linux-headers"
"man-db" "man-pages" "usbutils" "sudo"
2023-01-06 00:25:25 +00:00
"mlocate" "vim"
2023-01-13 16:14:45 +00:00
"exfat-utils" "logrotate" "udisks2"
2022-12-20 17:34:26 +00:00
2023-07-02 11:42:44 +00:00
"zsh" "htop" "git" "tailscale"
2022-12-20 17:34:26 +00:00
"cups" "cups-pdf"
"docker" "docker-buildx" "docker-compose"
2023-01-27 16:01:48 +00:00
"pcsclite"
2022-12-20 17:34:26 +00:00
### OTHER PACKAGE MANAGERS
2023-01-27 16:01:48 +00:00
"flatpak" "nix" "paru-bin"
2022-12-20 17:34:26 +00:00
### 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"
2023-07-02 11:42:44 +00:00
### GRAPHICAL
2022-12-20 17:34:26 +00:00
"vulkan-tools"
"mesa-vdpau" "libva-mesa-driver" "opencl-mesa"
### APPLICATIONS
"sddm"
2023-01-27 16:01:48 +00:00
"pipewire-pulse" "wireplumber" "vorbis-tools" "alsa-utils"
2022-12-20 17:34:26 +00:00
"gst-plugins-good" "gst-plugins-good" "gst-plugins-bad" "gst-plugins-ugly"
"polkit-gnome"
"alacritty"
"lxappearance" "qt5ct" "gnome-icon-theme-extras" "gnome-themes-extra"
2023-01-13 16:14:45 +00:00
#"thunar" "tumbler" "ffmpegthumbnailer"
#"gtkspell"
"thunderbird"
2023-07-02 11:42:44 +00:00
"qutebrowser-qt6-git" "python-adblock" "python-pynacl" "pdfjs-legacy"
2022-12-20 17:34:26 +00:00
"ungoogled-chromium" "firefox"
2023-07-02 11:42:44 +00:00
"chromium-widevine" "qt6-webengine-widevine"
2023-01-13 16:14:45 +00:00
#"kdeconnect" "keepassxc"
"syncthing"
2022-12-20 17:34:26 +00:00
)
source=(
"etc_locale.conf"
2022-12-30 11:29:56 +00:00
"etc_mkinitcpio.conf"
2022-12-20 17:34:26 +00:00
"etc_pacman.conf"
"etc_pacman.d_default.conf"
"etc_pacman.d_hooks_95-systemd-boot.hook"
2023-07-02 11:42:44 +00:00
"etc_sddm.conf.d_10-general.conf"
"etc_sddm.conf.d_80-autologin.conf"
"etc_sysctl.d_90-serguzim-overrides.conf"
2022-12-20 17:34:26 +00:00
"etc_vconsole.conf"
"etc_xdg_reflector_reflector.conf"
2022-12-20 17:34:26 +00:00
)
sha256sums=(
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
"SKIP"
)
backup=(
"boot/loader/loader.conf"
)
2023-07-02 11:42:44 +00:00
. ../utils.sh
2022-12-20 17:34:26 +00:00
package() {
2023-07-02 11:42:44 +00:00
_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"
2022-12-20 17:34:26 +00:00
}
# vim: ft=sh