aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/urweb.rb25
1 files changed, 25 insertions, 0 deletions
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