aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/json-c.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/json-c.rb')
-rw-r--r--Library/Formula/json-c.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/json-c.rb b/Library/Formula/json-c.rb
new file mode 100644
index 000000000..5c5d8f3e1
--- /dev/null
+++ b/Library/Formula/json-c.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class JsonC <Formula
+ url 'http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gz'
+ homepage 'http://oss.metaparadigm.com/json-c/'
+ md5 '3a13d264528dcbaf3931b0cede24abae'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "make install"
+ end
+end