blob: 18e4a75e65b7f07ef6c3f21c91cf731eb0a7b9f6 (
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
25
26
27
28
29
|
require 'formula'
class Parrot <Formula
head 'git://github.com/parrot/parrot.git'
url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/2.9.1/parrot-2.9.1.tar.gz'
homepage 'http://www.parrot.org/'
md5 '5f68803d2a9f7488459337f0628ad8fc'
depends_on 'gmp' => :optional
depends_on 'icu4c' => :optional
depends_on 'pcre' => :optional
def install
system "perl", "Configure.pl", "--prefix=#{prefix}",
"--debugging=0",
"--without-opengl",
"--cc=#{ENV.cc}"
system "make"
system "make install"
l = %x{otool -L #{bin}/parrot}[/\S*blib\/lib\S*/]
%w{ops2c parrot parrot-nqp parrot-prove parrot_config parrot_debugger
parrot_nci_thunk_gen pbc_disassemble pbc_dump pbc_merge pbc_to_exe
}.each do |fn|
system "install_name_tool -change #{l} #{lib}/libparrot.dylib #{bin+fn}"
end
end
end
|