homebrew-core/Formula/winetricks.rb
2019-12-27 23:05:49 +01:00

22 lines
580 B
Ruby

class Winetricks < Formula
desc "Automatic workarounds for problems in Wine"
homepage "https://github.com/Winetricks/winetricks"
url "https://github.com/Winetricks/winetricks/archive/20191224.tar.gz"
sha256 "c1223bb90e76c468f15784a701696a184aaee802bc9c236797166dea33d0d0a2"
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
test do
system "#{bin}/winetricks", "--version"
end
end