aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/avro-c.rb
blob: 917346b24113838efb7b64825c9ba4f34dcf8a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class AvroC < Formula
  homepage 'http://avro.apache.org/'
  url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.6/c/avro-c-1.7.6.tar.gz'
  sha1 '890fb6e2fd5c12018e47b8fff49900a361a44a17'

  # probably should be an optional dep
  conflicts_with 'xz'

  depends_on 'cmake' => :build

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end