7ca9eb8dc0
Project has moved from Google Code to Github. Closes Homebrew/homebrew#37983 Closes Homebrew/homebrew#37990. Signed-off-by: Xu Cheng <xucheng@me.com>
26 lines
677 B
Ruby
26 lines
677 B
Ruby
class Winetricks < Formula
|
|
homepage "https://github.com/Winetricks/winetricks"
|
|
url "https://github.com/Winetricks/winetricks/archive/20150316.tar.gz"
|
|
sha256 "c49d33b444bf8327930d94e3b20ca9c939f7ec886999e7e9c37f5bdf3f5cac67"
|
|
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
|