blob: ca9bbf3ed91aebdf548ea115ea6a6ff750e640eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|