blob: 195950acbd01a5835eb214422a8b806762893fe2 (
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
|
require 'formula'
class Strategoxt < Formula
url 'ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.17/strategoxt-0.17.tar.gz'
homepage 'http://strategoxt.org/Stratego/WebHome'
md5 '6a1523ec105c5091a8174b276aceea1b'
depends_on 'aterm'
depends_on 'sdf'
def install
system "./configure", "--prefix=#{prefix}"
# The build fails mysteriously with -j4
ENV.j1
system "make install"
end
def caveats
<<-EOS.undent
Auxiliary programs have been installed to:
#{libexec}
EOS
end
end
|