homebrew-core/Formula/bear.rb
Dmitry Yakimenko cf96953c61 bear 1.4 (new formula)
Closes Homebrew/homebrew#25939.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-17 00:14:09 +00:00

18 lines
418 B
Ruby

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