aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wyrd.rb
blob: 7ff7d65b677135a041d80f2bf8639d36deadc279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Wyrd < Formula
  homepage 'http://pessimization.com/software/wyrd/'
  url 'http://pessimization.com/software/wyrd/wyrd-1.4.5.tar.gz'
  sha1 '97b6c03ca532e5c209c112f5fb050cafbcecce6d'

  depends_on 'remind'
  depends_on 'objective-caml'

  def install
    ENV.deparallelize
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-utf8"
    system "make"
    system "make install"
  end
end