homebrew-core/Formula/mbelib.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

25 lines
734 B
Ruby

class Mbelib < Formula
desc "P25 Phase 1 and ProVoice vocoder"
homepage "https://github.com/szechyjs/mbelib"
url "https://github.com/szechyjs/mbelib/archive/v1.2.5.tar.gz"
sha256 "59d5e821b976a57f1eae84dd57ba84fd980d068369de0bc6a75c92f0b286c504"
head "https://github.com/szechyjs/mbelib.git"
bottle do
cellar :any
revision 1
sha1 "ce1b002a5de2daeb6a0f3c191354b23989ce64dc" => :yosemite
sha1 "67706f7658034d8894a3bc8e86d79857dc4472d1" => :mavericks
sha1 "979a2c63f3e44231ddf6e7b8829721a0e0a3c2bc" => :mountain_lion
end
depends_on "cmake" => :build
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make"
system "make", "install"
end
end
end