edbc12216b
Closes Homebrew/homebrew#25886. Signed-off-by: Brett Koonce <koonce@gmail.com>
24 lines
654 B
Ruby
24 lines
654 B
Ruby
require 'formula'
|
|
|
|
class GnuApl < Formula
|
|
homepage 'http://www.gnu.org/software/apl/'
|
|
url 'http://ftpmirror.gnu.org/apl/apl-1.2.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/apl/apl-1.2.tar.gz'
|
|
sha1 'ea037a7edc4da90bd8eecfe7d1d9f904e993e64f'
|
|
|
|
# GNU Readline is required; libedit won't work.
|
|
depends_on 'readline'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
ENV["TERM"] = "dumb"
|
|
system "#{bin}/apl", "--version"
|
|
end
|
|
end
|