• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env bash
2# Copyright 2022 The ChromiumOS Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5set -ex
6
7WINETRICKS_COMMIT_HASH="b666e05a0bf28fd940e5c258ccdfc0a2799d1948"
8WINETRICKS_URL="https://raw.githubusercontent.com/Winetricks/winetricks/"$WINETRICKS_COMMIT_HASH"/src/winetricks"
9WINESTRICKS_SCRIPT_SHA="40fdf1f89f3636187201858e3591e86752172814"
10
11# Install mingw64 toolchain and wine
12sudo apt-get install --yes --no-install-recommends \
13    gcc-mingw-w64-x86-64-win32 \
14    wine \
15    wine64
16