Add darner formula

Closes Homebrew/homebrew#14203.

Signed-off-by: Max Howell <mxcl@me.com>
master
Henrik Bjørnskov 2012-08-27 08:55:31 +02:00 committed by Max Howell
parent 781c3fde1e
commit 3e127b2a99
1 changed files with 19 additions and 0 deletions

19
Formula/darner.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Darner < Formula
homepage 'https://github.com/wavii/darner'
url 'https://github.com/wavii/darner/tarball/v0.1.4'
sha1 '721e31ea843047536fb265eaca70ddc592d14f43'
head 'https://github.com/wavii/darner.git'
depends_on 'cmake' => :build
depends_on 'boost'
depends_on 'snappy'
depends_on 'leveldb'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end