From ba85be7f20d661bc3c4adee251f83e3a717efd92 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 16 Jul 2011 00:06:57 -0500 Subject: New formula: Ur/Web Closes #7395. Signed-off-by: Misty De Meo --- Library/Formula/urweb.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Library/Formula/urweb.rb (limited to 'Library/Formula') diff --git a/Library/Formula/urweb.rb b/Library/Formula/urweb.rb new file mode 100644 index 000000000..c8ea25812 --- /dev/null +++ b/Library/Formula/urweb.rb @@ -0,0 +1,25 @@ +require 'formula' + +class Urweb < Formula + homepage 'http://impredicative.com/ur/' + url 'http://impredicative.com/ur/urweb-20111127.tgz' + md5 '33276fad9dc6b06782f041bccbdef7ac' + head 'http://hg.impredicative.com/urweb', :using => :hg + + depends_on 'mlton' + + def install + system "aclocal && autoreconf -i --force" + system "./configure --prefix=#{prefix}" + system "make" + system "make install" + end + + def caveats; <<-EOS.undent + Programs generated by the Ur/Web compiler can use SQLite, + PostgreSQL, or MySQL for the data store. You probably want to + install either PostgreSQL or MySQL if you're going to deploy + real apps or test them heavily. + EOS + end +end -- cgit v1.2.3