28 lines
914 B
Ruby
28 lines
914 B
Ruby
class Befunge93 < Formula
|
|
desc "Esoteric programming language"
|
|
homepage "https://catseye.tc/article/Languages.md#befunge-93"
|
|
url "https://catseye.tc/distfiles/befunge-93-2.25.zip"
|
|
version "2.25"
|
|
sha256 "93a11fbc98d559f2bf9d862b9ffd2932cbe7193236036169812eb8e72fd69b19"
|
|
license "BSD-3-Clause"
|
|
head "https://github.com/catseye/Befunge-93.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 1
|
|
sha256 "190fa82b0fef31f096a102f3b33205112cb206f578813f7ac78f78617c7d73d3" => :catalina
|
|
sha256 "23dd470caf59b04ffb652e46061760701269a8a79ce93c3afd71318da000112d" => :mojave
|
|
sha256 "c8a1e2085413dd0da3036462eeffed2f01198da92f128f4951c0885bf69a0149" => :high_sierra
|
|
end
|
|
|
|
def install
|
|
system "make"
|
|
bin.install Dir["bin/bef*"]
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.bf").write '"dlroW olleH" ,,,,,,,,,,, @'
|
|
assert_match /Hello World/, shell_output("#{bin}/bef test.bf")
|
|
end
|
|
end
|