diff options
| author | Sorin Ionescu | 2014-03-16 19:53:12 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2014-03-17 18:13:58 +0000 |
| commit | 914a4084fdad5bc7fcddc05843bc55816aea2609 (patch) | |
| tree | ca76dbf7d6df0b6520f73d34e2bb1a28e5574ab9 | |
| parent | 3d5ea5e9ceeed157049d8f35b7697c2a649b479d (diff) | |
| download | homebrew-914a4084fdad5bc7fcddc05843bc55816aea2609.tar.bz2 | |
gcore 1.3 (new 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 |
