diff options
| author | Dmitry Yakimenko | 2014-01-16 03:29:38 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-17 00:14:09 +0000 |
| commit | 529950ce998c7f1845667e818f45725edd4aabfc (patch) | |
| tree | 0c8ad8a572c75369f59cf20794fa8af1515e41a5 /Library/Formula | |
| parent | d059126730f363c317d4958a60492bd656d37143 (diff) | |
| download | homebrew-529950ce998c7f1845667e818f45725edd4aabfc.tar.bz2 | |
bear 1.4 (new formula)
Closes #25939.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/bear.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/bear.rb b/Library/Formula/bear.rb new file mode 100644 index 000000000..9b79024e9 --- /dev/null +++ b/Library/Formula/bear.rb @@ -0,0 +1,18 @@ +require "formula" + +class Bear < Formula + homepage "https://github.com/rizsotto/Bear" + url "https://github.com/rizsotto/Bear/archive/1.4.tar.gz" + sha1 "0ea917b5fefb9c3293310d9280b131366fc6de74" + + depends_on "cmake" => :build + depends_on "pkg-config" => :build + depends_on "libconfig" + + def install + mkdir "build" do + system "cmake", "..", *std_cmake_args + system "make", "install" + end + end +end |
