61 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.4 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
 | |
| 	"wireplumber" # pipewire-session-manager
 | |
| 	"pipewire-jack" # libjack.so
 | |
| )
 | |
| depends=(
 | |
| 	### BASE
 | |
| 	"base" "base-devel"
 | |
| 	"linux-zen" "linux-zen-headers" "linux-firmware"
 | |
| 	"man-db" "man-pages" "usbutils" "sudo"
 | |
| 	"mlocate" "vim" "libnotify"
 | |
| 	"exfat-utils" "logrotate" "udisks2" "fuse2"
 | |
| 
 | |
| 	"zsh" "htop" "git" "tailscale"
 | |
| 	#"cups" "cups-pdf"
 | |
| 	"docker" "docker-buildx" "docker-compose"
 | |
| 	"pcsclite"
 | |
| 
 | |
| 	### OTHER PACKAGE MANAGERS
 | |
| 	"nix" "paru-bin" "flatpak"
 | |
| 
 | |
| 	### ARCH UTILS
 | |
| 	"archlinux-contrib" "pacman-contrib"
 | |
| 	"arch-audit"
 | |
| 	"reflector" # Update arch mirrorlist
 | |
| 	"libudev0-shim" # Arch compatibility library
 | |
| 
 | |
| 	### GRAPHICAL
 | |
| 	"vulkan-tools"
 | |
| 	"mesa-vdpau" "libva-mesa-driver" "mesa-utils"
 | |
| 	"libva-utils" "libvdpau-va-gl"
 | |
| 
 | |
| 	### 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"
 | |
| 	"thunderbird"
 | |
| 	"qutebrowser" "python-adblock" "python-pynacl" "pdfjs-legacy" "python-pygments"
 | |
| 	"qt6-webengine-widevine" "chromium-widevine"
 | |
| 	"brave-bin"
 | |
| )
 | |
| source=()
 | |
| sha256sums=()
 | |
| backup=()
 | |
| 
 | |
| # vim: ft=sh
 |