class NoMoreSecrets < Formula desc "Recreates the SETEC ASTRONOMY effect from 'Sneakers'" homepage "https://github.com/bartobri/no-more-secrets" url "https://github.com/bartobri/no-more-secrets/archive/v0.3.3.tar.gz" sha256 "cfcf408768c6b335780e46a84fbc121a649c4b87e0564fc972270e96630efdce" bottle do cellar :any_skip_relocation sha256 "ad2927337af4e85d6bff3fbdcfeb2e435c85de8d527d23a3644c7add3c7acab0" => :high_sierra sha256 "97ff320dd7639a7a71fbfa4f7e72fb7c66e4b60ea0f6a6adc4583c63cbda05ac" => :sierra sha256 "78c52bd9f179967cb240c8f49763e03e512092ee476b73e38166bfa79757664f" => :el_capitan end def install system "make", "all" system "make", "prefix=#{prefix}", "install" end test do assert_equal "nms version #{version}", shell_output("#{bin}/nms -v").chomp end end