31 lines
1.1 KiB
Ruby
31 lines
1.1 KiB
Ruby
class Brainfuck < Formula
|
|
desc "Interpreter for the brainfuck language"
|
|
homepage "https://github.com/fabianishere/brainfuck"
|
|
url "https://github.com/fabianishere/brainfuck/archive/2.7.1.tar.gz"
|
|
sha256 "06534de715dbc614f08407000c2ec6d497770069a2d7c84defd421b137313d71"
|
|
head "https://github.com/fabianishere/brainfuck.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "cf3c31fcf7c4cf099b348d01e619d1791aa3a255199de80afbc637e331947abf" => :high_sierra
|
|
sha256 "354bb3372301325b49bfd4bd9b53084061af3bc3a3d6375e1c4635297c0dd008" => :sierra
|
|
sha256 "f8289bed7e6455b63f05baf367069f60fe478f6c78f064c06ab1e571a181c3b7" => :el_capitan
|
|
end
|
|
|
|
option "with-debug", "Extend the interpreter with a debug command"
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
args = std_cmake_args + %w[-DBUILD_SHARED_LIB=ON -DBUILD_STATIC_LIB=ON -DINSTALL_EXAMPLES=ON]
|
|
args << "-DENABLE_DEBUG=ON" if build.with? "debug"
|
|
|
|
system "cmake", ".", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/brainfuck -e '++++++++[>++++++++<-]>+.+.+.'")
|
|
assert_equal "ABC", output.chomp
|
|
end
|
|
end
|