2015-07-23 21:22:03 +00:00
|
|
|
class ImgurScreenshot < Formula
|
|
|
|
desc "Take screenshot selection, upload to imgur. + more cool things"
|
|
|
|
homepage "https://github.com/jomo/imgur-screenshot"
|
2015-12-01 03:26:24 +00:00
|
|
|
url "https://github.com/jomo/imgur-screenshot/archive/v1.6.0.tar.gz"
|
|
|
|
sha256 "1050d87dd3a10652f37998d962034fe1b126d460c7d8eb378359879cec647bc1"
|
2015-07-23 21:22:03 +00:00
|
|
|
head "https://github.com/jomo/imgur-screenshot.git"
|
|
|
|
|
2015-10-23 11:53:16 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2015-07-23 21:22:03 +00:00
|
|
|
option "with-terminal-notifier", "Needed for Mac OS X Notifications"
|
|
|
|
|
|
|
|
depends_on "terminal-notifier" => :optional
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "imgur-screenshot.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-10-23 11:53:16 +00:00
|
|
|
system "#{bin}/imgur-screenshot.sh", "--check" # checks deps
|
2015-07-23 21:22:03 +00:00
|
|
|
end
|
|
|
|
end
|