homebrew-core/Formula/geany.rb
eah1@yahoo.com 4c28fbc29f geany 0.21
The 0.20 version of geany was clipping the top few pixels of text in the
editor window under Mac OS 10.7.2 XQuartz 2.7.1_rc2 (xorg-server
1.11.4), 0.21 works but only after a rm and full rebuild of all
dependencies.

Closes Homebrew/homebrew#10072.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-09 19:40:47 -06:00

19 lines
519 B
Ruby

require 'formula'
class Geany < Formula
homepage 'http://geany.org/'
url 'http://download.geany.org/geany-0.21.tar.gz'
sha256 'a1aa27d2f946ccca8a4e57faf0029cf6aa544d5d52f0170e017c137c33b4b67d'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'intltool'
depends_on 'gtk+'
def install
intltool = Formula.factory('intltool')
ENV.append "PATH", intltool.bin, ":"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end