-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget-dependencies.sh
More file actions
40 lines (33 loc) · 1014 Bytes
/
Copy pathget-dependencies.sh
File metadata and controls
40 lines (33 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
set -eu
ARCH=$(uname -m)
echo "Installing package dependencies..."
echo "---------------------------------------------------------------"
pacman -Syu --noconfirm \
kaffeine \
kvantum-qt5 \
pipewire-audio \
pipewire-jack \
qt5ct \
qt5-wayland \
vlc-plugin-aalib \
vlc-plugin-aom \
vlc-plugin-ass \
vlc-plugin-avahi \
vlc-plugin-bluray \
vlc-plugin-caca \
vlc-plugin-dvd \
vlc-plugin-ffmpeg \
vlc-plugin-freetype \
vlc-plugin-pulse \
vlc-plugin-srt \
vlc-plugin-matroska
if [ "$ARCH" = 'x86_64' ]; then
pacman -Syu --noconfirm libva-intel-driver
fi
echo "Installing debloated packages..."
echo "---------------------------------------------------------------"
get-debloated-pkgs --add-common --prefer-nano intel-media-driver-mini
# Comment this out if you need an AUR package
#make-aur-package PACKAGENAME
# If the application needs to be manually built that has to be done down here