From 71f95fc4c2461b3e57d914e08d107aa6c6638ef6 Mon Sep 17 00:00:00 2001 From: Atharva Deshmukh Date: Sat, 4 Mar 2017 14:21:48 +0530 Subject: [PATCH] shellshare 1.0.1 (new formula) (#10518) --- Formula/shellshare.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Formula/shellshare.rb diff --git a/Formula/shellshare.rb b/Formula/shellshare.rb new file mode 100644 index 0000000000..c3e3243d8f --- /dev/null +++ b/Formula/shellshare.rb @@ -0,0 +1,18 @@ +class Shellshare < Formula + desc "Live Terminal Broadcast" + homepage "https://shellshare.net" + url "https://github.com/vitorbaptista/shellshare/archive/v1.0.1.tar.gz" + sha256 "e151bf4e9f3fa133f801d7d5843ad5d3ada4cd44ec5ea9e98b77ccdea4587918" + + bottle :unneeded + + depends_on :python if MacOS.version <= :snow_leopard + + def install + bin.install "public/bin/shellshare" + end + + test do + system "#{bin}/shellshare", "-v" + end +end