aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/orderly.rb16
-rw-r--r--Library/Formula/yajl.rb6
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