blob: f45d2a5644a9c41f35abe3605792409f204ff4db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class Orderly < Formula
  url 'https://github.com/lloyd/orderly/tarball/cdf140170b987a27826ba146b31890b0ae1506bd'
  homepage 'http://orderly-json.org/'
  md5 'b416de7d7e90088a7c842cc26ae393ec'
  version '0.0.1'
  depends_on 'yajl'
  depends_on 'cmake' => :build
  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end
  |