homebrew-core/Formula/objc-run.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
488 B
Ruby

class ObjcRun < Formula
desc "Use Objective-C files for shell script-like tasks"
homepage "https://github.com/iljaiwas/objc-run"
url "https://github.com/iljaiwas/objc-run/archive/1.4.tar.gz"
sha256 "6d02a31764c457c4a6a9f5df0963d733d611ba873fc32672151ee02a05acd6f2"
head "https://github.com/iljaiwas/objc-run.git"
def install
bin.install "objc-run"
(share+"objc-run").install "examples", "test.bash"
end
test do
system "#{share}/objc-run/test.bash"
end
end