mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
11 lines
269 B
Bash
11 lines
269 B
Bash
|
#!/usr/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Install build dependencies for kvazaar
|
||
|
pacman -S --noconfirm --noprogressbar --needed \
|
||
|
$MINGW_PACKAGE_PREFIX-gcc \
|
||
|
$MINGW_PACKAGE_PREFIX-yasm
|
||
|
|
||
|
# Delete unused packages to reduce space used in the Appveyor cache
|
||
|
pacman -Sc --noconfirm
|