blob: eccdf8a98157d3925a864d84ef668ec0333786ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
  |