GNU APL 1.1

Closes Homebrew/homebrew#24046.
Closes Homebrew/homebrew#24359.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
seano and Matt Gauger 2013-11-15 14:28:42 -06:00 committed by Adam Vandenberg
parent 03fb5203ed
commit f81702fe65

22
Formula/gnu-apl.rb Normal file
View file

@ -0,0 +1,22 @@
require 'formula'
class GnuApl < Formula
homepage 'http://www.gnu.org/software/apl/'
url 'http://ftpmirror.gnu.org/apl/apl-1.1.tar.gz'
sha1 'de5071372b64a6d6921141cbbc3555e3b40da7af'
# 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
system "#{bin}/apl", "--version"
end
end