objc-run 1.4 (new formula)

A shell script that makes it easy to use Objective-C files for shell
script-like tasks.

Closes Homebrew/homebrew#25814.
Closes Homebrew/homebrew#26052.

References https://github.com/iljaiwas/objc-run/issues/7.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Alexis Hildebrandt 2014-01-20 11:06:52 -08:00 committed by Mike McQuaid
parent 5c45410983
commit 1aa5253878

17
Formula/objc-run.rb Normal file
View file

@ -0,0 +1,17 @@
require 'formula'
class ObjcRun < Formula
homepage 'https://github.com/iljaiwas/objc-run'
url 'https://github.com/iljaiwas/objc-run/archive/1.4.tar.gz'
sha1 '86c15705359f2dc2c62d70e358caf63c2a468fee'
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