homebrew-core/Formula/winetricks.rb
Igor Kapkov 1c5a454ea5 winetricks 20190615
Closes #41239.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-06-23 21:53:58 +02:00

28 lines
721 B
Ruby

class Winetricks < Formula
desc "Download and install various runtime libraries"
homepage "https://github.com/Winetricks/winetricks"
url "https://github.com/Winetricks/winetricks/archive/20190615.tar.gz"
sha256 "2a5ebbd95e0ed0041f903148af19ba28d5b7e29a62db4501771dfffb7368fc42"
head "https://github.com/Winetricks/winetricks.git"
bottle :unneeded
depends_on "cabextract"
depends_on "p7zip"
depends_on "unrar"
def install
bin.install "src/winetricks"
man1.install "src/winetricks.1"
end
def caveats; <<~EOS
winetricks is a set of utilities for wine, which is installed separately:
brew install wine
EOS
end
test do
system "#{bin}/winetricks", "--version"
end
end