blob: 5b26adfce10552a4ed2b8c0c1850861c44ad3839 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class Yajl < Formula
homepage 'http://lloyd.github.io/yajl/'
url 'https://github.com/lloyd/yajl/archive/2.0.4.tar.gz'
sha256 '0e78f516dc53ecce7dc073f9a9bb0343186b58ef29dcd1dad74e5e853b216dd5'
bottle do
sha1 "a02d27cc6b98912176bd636ee30aaca464a44ae8" => :mavericks
sha1 "1d8cec340ef78502d9e726a96c416c20ee7e85e1" => :mountain_lion
sha1 "1e7bbbf4f37b9a251c430b2438f3449cc62d5903" => :lion
end
# Configure uses cmake internally
depends_on 'cmake' => :build
def install
ENV.deparallelize
system "./configure", "--prefix=#{prefix}"
system "make install"
(include/'yajl').install Dir['src/api/*.h']
end
end
|