aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnu-apl.rb
blob: 0255e21b986087f5809c8bbd16bb3119b28bd10b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require "formula"

class GnuApl < Formula
  homepage "http://www.gnu.org/software/apl/"
  url "http://ftpmirror.gnu.org/apl/apl-1.4.tar.gz"
  mirror "http://ftp.gnu.org/gnu/apl/apl-1.4.tar.gz"
  sha1 "ee5dab7f7c0f5d79c435a20f3ddcafbda85ac22e"

  bottle do
    sha1 "e067c7741c9f7e174f0a5f06d99e59fe5b6e930b" => :mavericks
  end

  # GNU Readline is required; libedit won't work.
  depends_on "readline"
  depends_on :macos => :mavericks

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}"
    system "make", "install"
  end

  test do
    (testpath/"hello.apl").write <<-EOS.undent
      'Hello world'
      )OFF
    EOS
    assert_match /Hello world/, shell_output("#{bin}/apl -s -f hello.apl")
  end
end