aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/urweb.rb
blob: ecb99ab7fc56f2a82130e1209fe1c3c08cf72926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'formula'

class Urweb < Formula
  homepage 'http://impredicative.com/ur/'
  url 'http://impredicative.com/ur/urweb-20120807.tgz'
  md5 'c4860d5a72f1ef7754f180a25f77b915'
  head 'http://hg.impredicative.com/urweb', :using => :hg

  depends_on :automake
  depends_on :libtool

  depends_on 'mlton'

  def install
    system "aclocal"
    system "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