aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cppi.rb
blob: 06d02e4743c7e70f0fe26006057ecc42c9d2df15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Cppi < Formula
  homepage 'http://www.gnu.org/software/cppi/'
  url 
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",
  
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