You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
326 B
16 lines
326 B
2 years ago
|
class Lox < Formula
|
||
|
desc "The Lox language from Crafting Interpreters"
|
||
|
homepage "https://craftinginterpreters.com/the-lox-language.html"
|
||
|
license "MIT"
|
||
|
head "https://github.com/munificent/craftinginterpreters.git"
|
||
|
|
||
|
def install
|
||
|
system "make clox"
|
||
|
bin.install "clox"
|
||
|
end
|
||
|
|
||
|
test do
|
||
|
system "lox"
|
||
|
end
|
||
|
end
|