homebrew-core/Formula/zile.rb
nibbles 2bits 0e3ccf8fbc zile 2.4.7
Upgrade Zile to version 2.4.7.
Add dep on gettext because configure wanted libintl.
Remove --man flag.  It installs to share/man correctly.
Works on Lion and Snow Lep, XCode-4.3.2 and 4.0.2, all compilers.

Closes Homebrew/homebrew#11273.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-12 18:57:31 -05:00

16 lines
427 B
Ruby

require 'formula'
class Zile < Formula
homepage 'http://www.gnu.org/software/zile/'
url 'http://ftpmirror.gnu.org/zile/zile-2.4.7.tar.gz'
mirror 'http://ftp.gnu.org/gnu/zile/zile-2.4.7.tar.gz'
sha1 '30c47a399b94b5dce68a178fe98807f86719a466'
depends_on 'bdw-gc'
depends_on 'gettext'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end