Skip to content

Commit

Permalink
Added missing dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
hipersayanX committed Jun 25, 2024
1 parent 1972a49 commit eeb8c33
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ports/ci/linux-mingw/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,22 +56,22 @@ pacman --noconfirm --needed -S \
file \
git \
make \
mingw-w64-cmake \
mingw-w64-gcc \
mingw-w64-pkg-config \
pkgconf \
python \
sed \
xorg-server-xvfb \
vulkan-icd-loader \
wine \
mingw-w64-pkg-config \
mingw-w64-cmake \
mingw-w64-gcc \
xorg-server-xvfb

# Install NSIS

nsis=nsis-${NSIS_VERSION}-setup.exe
${DOWNLOAD_CMD} "https://sourceforge.net/projects/nsis/files/NSIS%20${NSIS_VERSION:0:1}/${NSIS_VERSION}/${nsis}"

if [ -e ${nsis} ]; then
if [ -e "${nsis}" ]; then
export WINEPREFIX=/opt/.wine

xvfb-run --auto-servernum wine ./${nsis} /S
Expand Down

0 comments on commit eeb8c33

Please sign in to comment.