blob: 71f5492cafddc033ae99d8fbc6e776a34954d848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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
configure_args = [
"--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--enable-utf8",
]
system "./configure", *configure_args
system "make"
system "make install"
end
end
|