52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
class Newlisp < Formula
|
|
desc "Lisp-like, general-purpose scripting language"
|
|
homepage "http://www.newlisp.org/"
|
|
url "http://www.newlisp.org/downloads/newlisp-10.7.5.tgz"
|
|
sha256 "dc2d0ff651c2b275bc4af3af8ba59851a6fb6e1eaddc20ae75fb60b1e90126ec"
|
|
|
|
livecheck do
|
|
url "http://www.newlisp.org/index.cgi?Downloads"
|
|
regex(/href=.*?newlisp[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_monterey: "1fb90e4713da55257988e767547c82613586e3a441e007a629e878644955cc89"
|
|
sha256 arm64_big_sur: "24b3c02002fa7c832d9a817c552b19bd520ae06f82ab526b8e993ae0a3d77d99"
|
|
sha256 monterey: "e7e6ab4d066923848b35a24c5a85cb357be0ab15d76fc9dbe5c87e2625c18b1a"
|
|
sha256 big_sur: "509f6892a0eabf53cebe424f2f2163ded090b7942e8fe8e43047f43781b0535e"
|
|
sha256 catalina: "62fd116459d24ab0db976221fb16fd83a7a7db5447298bcc7f8b0dbf9a55f91f"
|
|
sha256 mojave: "179146b49c20011f3da4dbdb9b66a6ed66d5dd9f15d07aeca9b8717219a62eeb"
|
|
sha256 high_sierra: "5a0d4085a0e7fc364b3165be7e92a9dfeb2f4882e1971663ac74c70348a5c4a4"
|
|
sha256 x86_64_linux: "27f5be3e4e9319afe264a0394127ddbfdaf6d4f8da25b790af9b25d559c23c13"
|
|
end
|
|
|
|
depends_on "readline"
|
|
|
|
def install
|
|
# Required to use our configuration
|
|
ENV.append_to_cflags "-DNEWCONFIG -c"
|
|
|
|
system "./configure-alt", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make"
|
|
system "make", "check"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
If you have brew in a custom prefix, the included examples
|
|
will need to be be pointed to your newlisp executable.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
path = testpath/"test.lsp"
|
|
path.write <<~EOS
|
|
(println "hello")
|
|
(exit 0)
|
|
EOS
|
|
|
|
assert_equal "hello\n", shell_output("#{bin}/newlisp #{path}")
|
|
end
|
|
end
|