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