40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
class Inko < Formula
|
|
desc "The Inko programming language"
|
|
homepage "https://inko-lang.org/"
|
|
url "https://gitlab.com/inko-lang/inko/-/archive/v0.6.0/inko-v0.6.0.tar.gz"
|
|
sha256 "3560023128675db5f76698e546e7f3fce70f45816735fb3fa71d103ae383fc61"
|
|
head "https://gitlab.com/inko-lang/inko.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f3191304d3390550d8c47e063ca84e204d571f398c6034fda2395487f8aa81ea" => :catalina
|
|
sha256 "be14d156158816f1389f2b18e04f06f8a6bc9310c9ff6286e1045d9a98f27f18" => :mojave
|
|
sha256 "751dd81d09fcbd7aff9fe9580997d04f8c96ea45c064a18b94455c7508a3ba7e" => :high_sierra
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "coreutils" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "make" => :build
|
|
depends_on "rust" => :build
|
|
|
|
uses_from_macos "ruby", :since => :sierra
|
|
|
|
def install
|
|
make = Formula["make"].opt_bin/"gmake"
|
|
system make, "install", "PREFIX=#{libexec}"
|
|
bin.install Dir[libexec/"bin/*"]
|
|
bin.env_script_all_files libexec/"bin", :INKOC_HOME => libexec/"lib/inko"
|
|
end
|
|
|
|
test do
|
|
(testpath/"hello.inko").write <<~EOS
|
|
import std::stdio::stdout
|
|
|
|
stdout.print('Hello, world!')
|
|
EOS
|
|
assert_equal "Hello, world!\n", shell_output("#{bin}/inko hello.inko")
|
|
end
|
|
end
|