aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDmitry Yakimenko2014-01-16 03:29:38 +0100
committerMike McQuaid2014-01-17 00:14:09 +0000
commit529950ce998c7f1845667e818f45725edd4aabfc (patch)
tree0c8ad8a572c75369f59cf20794fa8af1515e41a5 /Library/Formula
parentd059126730f363c317d4958a60492bd656d37143 (diff)
downloadhomebrew-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.rb18
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