aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Rempe2013-08-09 17:45:43 -0700
committerAdam Vandenberg2013-09-23 18:45:37 -0700
commit371a75bb0c17438f298118284d532d57767e9856 (patch)
tree64049e58912f3defc37cbe7245df8af98921881f
parent6451ce5e9bbfb98f07683a6a63454ef58b5935c0 (diff)
downloadhomebrew-371a75bb0c17438f298118284d532d57767e9856.tar.bz2
mbelib 1.2.5
Closes #21792. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/mbelib.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/mbelib.rb b/Library/Formula/mbelib.rb
new file mode 100644
index 000000000..82f6a8e41
--- /dev/null
+++ b/Library/Formula/mbelib.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Mbelib < Formula
+ homepage 'https://github.com/szechyjs/mbelib'
+ head 'https://github.com/szechyjs/mbelib.git'
+ url 'https://github.com/szechyjs/mbelib/archive/v1.2.5.tar.gz'
+ sha1 'ee970823d95f008941132edc6142a1a0282655a8'
+
+ depends_on 'cmake' => :build
+
+ def install
+ mkdir 'build' do
+ system "cmake", "..", *std_cmake_args
+ system "make"
+ system "make install"
+ end
+ end
+end