29 lines
488 B
Bash
Executable File
29 lines
488 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
startDir="$(pwd)"
|
|
buildDir="${startDir}/xlibre-build"
|
|
|
|
packageList=(
|
|
xlibre-input-libinput
|
|
xlibre-xserver
|
|
xlibre-video-amdgpu
|
|
xlibre-video-ati
|
|
xlibre-video-fbdev
|
|
xlibre-video-intel
|
|
xlibre-video-nouveau
|
|
xlibre-video-vesa
|
|
xlibre-video-dummy-with-vt
|
|
)
|
|
|
|
mkdir -p "${buildDir}"
|
|
|
|
for i in "${packageList[@]}" ; do
|
|
yay -Ga "$i"
|
|
pushd "$i"
|
|
makepkg -Acrsf
|
|
cp -v ./*.pkg.tar.* "${buildDir}/"
|
|
popd
|
|
done
|