Skip to content

Instantly share code, notes, and snippets.

@aksswami
Created May 4, 2017 14:05
Show Gist options
  • Save aksswami/2e8e800c06c5a8f385cef0b40c945ba3 to your computer and use it in GitHub Desktop.
Save aksswami/2e8e800c06c5a8f385cef0b40c945ba3 to your computer and use it in GitHub Desktop.
Formula for Marathon Repo (https://github.com/JohnSundell/Marathon/)
class Marathon < Formula
desc "Marathon makes it easy to write, run and manage your Swift scripts 🏃"
homepage ""
url "https://github.com/aksswami/Marathon/archive/v0.0.1.tar.gz"
sha256 "44d5431af1d16df65f01ee9fc6e08cf73d94812cda611d3b5c518760d4a8bfa1"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
def uninstall
system "make", "uninstall"
end
test do
system "false"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment