blob: 7b83aaa05c40c4b572c60b8ac68e0cee82c78fb9 (
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
url 'http://pessimization.com/software/wyrd/wyrd-1.4.5.tar.gz'
homepage 'http://pessimization.com/software/wyrd/'
md5 '3f39fa83a54d2d890823094aba9ca3cc'
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
|