diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gcore.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/gcore.rb b/Library/Formula/gcore.rb new file mode 100644 index 000000000..07677feaa --- /dev/null +++ b/Library/Formula/gcore.rb @@ -0,0 +1,13 @@ +require "formula" + +class Gcore < Formula + homepage "http://osxbook.com/book/bonus/chapter8/core/" + url "http://osxbook.com/book/bonus/chapter8/core/download/gcore-1.3.tar.gz" + sha1 "92c0bf04577f86b05fb7bede7aa196d257f8aad2" + + def install + ENV.universal_binary + system "make" + bin.install "gcore" + end +end |
