diff options
| author | ggironda | 2009-12-23 13:28:10 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-02 20:23:44 -0800 |
| commit | 2bf123a5ff5bce64783daa6eae272087e479a25d (patch) | |
| tree | 9303cbd9b220fa7aad6d34bff1075aeb6e3ddc6f /Library/Formula | |
| parent | 5aa51d3eb7f6640af119fc0d065daafb2ad148e0 (diff) | |
| download | homebrew-2bf123a5ff5bce64783daa6eae272087e479a25d.tar.bz2 | |
Updates the YAJL formula and adds a Orderly formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/orderly.rb | 16 | ||||
| -rw-r--r-- | Library/Formula/yajl.rb | 6 |
2 files changed, 19 insertions, 3 deletions
diff --git a/Library/Formula/orderly.rb b/Library/Formula/orderly.rb new file mode 100644 index 000000000..d004b32ce --- /dev/null +++ b/Library/Formula/orderly.rb @@ -0,0 +1,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
\ No newline at end of file diff --git a/Library/Formula/yajl.rb b/Library/Formula/yajl.rb index c0a337efd..7c094908e 100644 --- a/Library/Formula/yajl.rb +++ b/Library/Formula/yajl.rb @@ -2,8 +2,8 @@ require 'formula' class Yajl <Formula homepage 'http://lloyd.github.com/yajl/' - url 'http://cloud.github.com/downloads/lloyd/yajl/yajl-1.0.7.tar.gz' - md5 'a4436163408fe9b8c9545ca028ef1b4f' + url 'http://cloud.github.com/downloads/lloyd/yajl/yajl-1.0.8.tar.gz' + md5 '26116d41b6466f6b4da7d9e8450f2200' # Configure uses cmake, even though it looks like we're # just using autotools below. @@ -15,4 +15,4 @@ class Yajl <Formula system "./configure --prefix '#{prefix}'" system "make install" end -end +end
\ No newline at end of file |
