0e3ccf8fbc
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>
16 lines
427 B
Ruby
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
|