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:
parent
03fb5203ed
commit
f81702fe65
1 changed files with 22 additions and 0 deletions
22
Formula/gnu-apl.rb
Normal file
22
Formula/gnu-apl.rb
Normal 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
|
Loading…
Reference in a new issue