zenity 2.32.1 (new formula)

Zenity is an optional dependeny for winetricks.
Winetricks running with Zenity offers a graphical dialogue.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>

Closes Homebrew/homebrew#25683.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Gerrit Beine 2014-01-05 17:17:35 +01:00 committed by Mike McQuaid
parent e03282a1b0
commit 3b4dac7a0f
1 changed files with 24 additions and 0 deletions

24
Formula/zenity.rb Normal file
View File

@ -0,0 +1,24 @@
require 'formula'
class Zenity < Formula
homepage 'http://live.gnome.org/Zenity'
url 'http://ftp.gnome.org/pub/gnome/sources/zenity/2.32/zenity-2.32.1.tar.gz'
sha1 '41f323f88299618cefdde03fce95b283e5d81c8b'
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'libxml2'
depends_on 'gtk+'
depends_on 'gnome-doc-utils'
depends_on 'scrollkeeper'
def install
ENV.append_path 'PYTHONPATH', HOMEBREW_PREFIX/"opt/libxml2/lib/python2.7/site-packages"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end