7d1c6d2efc
winetricks 20150416 (release) Closes Homebrew/homebrew#40621. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
27 lines
733 B
Ruby
27 lines
733 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/20150416.tar.gz"
|
|
sha256 "6b1bda0d9ec34c7a8596d59a49fa29fbe00848d9f0fecbf9dff8b314d51a1945"
|
|
head "https://github.com/Winetricks/winetricks.git"
|
|
|
|
depends_on "cabextract"
|
|
depends_on "p7zip"
|
|
depends_on "unrar"
|
|
depends_on "wine"
|
|
|
|
def install
|
|
bin.install "src/winetricks"
|
|
man1.install "src/winetricks.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/winetricks", "dlls", "list"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
winetricks is a set of utilities for wine, which is installed separately:
|
|
brew install wine
|
|
EOS
|
|
end
|
|
end
|