From edfff8c373aa2d2c52731d6183d69ea9c8f8ef26 Mon Sep 17 00:00:00 2001 From: "Jack Chen (chendo)" Date: Tue, 6 Mar 2012 19:55:23 +1100 Subject: [PATCH] Added formula for filepath --- Library/Formula/filepath.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Library/Formula/filepath.rb diff --git a/Library/Formula/filepath.rb b/Library/Formula/filepath.rb new file mode 100644 index 000000000000..d17bbbf035b7 --- /dev/null +++ b/Library/Formula/filepath.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Filepath < Formula + version '0.3' + url 'https://github.com/downloads/chendo/filepath/filepath-0.3.tar.gz' + homepage 'http://github.com/chendo/filepath' + md5 'c842a3bdaa8746d19bb10dface26a360' + + def install + system "xcodebuild" + (bin).install 'build/Release/filepath' + end +end +