aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/parrot.rb28
1 files changed, 14 insertions, 14 deletions
diff --git a/Library/Formula/parrot.rb b/Library/Formula/parrot.rb
index 83bfad98c..725442e7a 100644
--- a/Library/Formula/parrot.rb
+++ b/Library/Formula/parrot.rb
@@ -1,24 +1,24 @@
-require 'formula'
+require "formula"
class Parrot < Formula
- homepage 'http://www.parrot.org/'
- url 'ftp://ftp.parrot.org/pub/parrot/releases/supported/6.0.0/parrot-6.0.0.tar.bz2'
- sha256 '6cb9223ee389a36588acf76ad8ac85e2224544468617412b1d7902e5eb8bd39b'
+ homepage "http://www.parrot.org/"
+ url "ftp://ftp.parrot.org/pub/parrot/releases/supported/6.3.0/parrot-6.3.0.tar.bz2"
+ sha256 "8d64df21751770741dac263e621275f04ce7493db6f519e3f4886a085161a80d"
devel do
- url 'ftp://ftp.parrot.org/pub/parrot/releases/devel/6.1.0/parrot-6.1.0.tar.bz2'
- sha256 'bb1294ad2a7d5b3c4688fc736fb775e94ecfe35fdc072a2631c2080eb5f366f7'
+ url "ftp://ftp.parrot.org/pub/parrot/releases/devel/6.5.0/parrot-6.5.0.tar.bz2"
+ sha256 "1f45044f8dcfaafef795e93a91c8f4a55dd8347cc0359ce4dcf6f34f7bfff140"
end
- head 'https://github.com/parrot/parrot.git'
+ head "https://github.com/parrot/parrot.git"
- conflicts_with 'rakudo-star'
+ conflicts_with "rakudo-star"
- depends_on 'gmp' => :optional
- depends_on 'icu4c' => :optional
- depends_on 'pcre' => :optional
- depends_on 'readline' => :optional
- depends_on 'libffi' => :optional
+ depends_on "gmp" => :optional
+ depends_on "icu4c" => :optional
+ depends_on "pcre" => :optional
+ depends_on "readline" => :optional
+ depends_on "libffi" => :optional
def install
system "perl", "Configure.pl", "--prefix=#{prefix}",
@@ -29,7 +29,7 @@ class Parrot < Formula
system "make"
system "make install"
# Don't install this file in HOMEBREW_PREFIX/lib
- rm_rf lib/'VERSION'
+ rm_rf lib/"VERSION"
end
test do