blob: da1c22f3cc3d647179c3391a3dcab883d60760fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Wyrd <Formula
url 'http://pessimization.com/software/wyrd/wyrd-1.4.4.tar.gz'
homepage 'http://pessimization.com/software/wyrd/'
md5 'a376c05ba614625da06082d850c742c7'
depends_on 'remind'
depends_on 'objective-caml'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-utf8"
system "make"
system "make install"
end
end
|