aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/parrot.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/parrot.rb b/Library/Formula/parrot.rb
new file mode 100644
index 000000000..7db15e617
--- /dev/null
+++ b/Library/Formula/parrot.rb
@@ -0,0 +1,18 @@
+require 'brewkit'
+
+class Parrot <Formula
+ url 'ftp://ftp.parrot.org//pub/parrot/releases/devel/1.6.0/parrot-1.6.0.tar.gz'
+ homepage 'http://www.parrot.org/'
+ md5 '6fde2d91278a3990213c8671a0856e4a'
+
+ depends_on 'pcre'
+
+ def install
+ system "perl Configure.pl --prefix=#{prefix} --debugging=0 --without-opengl --cc=#{ENV['CC']}"
+ system "make install"
+
+ h = "#{HOMEBREW_PREFIX}/Cellar/parrot/1.6.0/bin/parrot"
+ l = %x{otool -L #{h}}[/\S*blib\/lib\S*/]
+ system "install_name_tool -change #{l} #{HOMEBREW_PREFIX}/lib/libparrot.dylib #{h}"
+ end
+end