95 lines
3.4 KiB
Ruby
95 lines
3.4 KiB
Ruby
class Perl < Formula
|
|
desc "Highly capable, feature-rich programming language"
|
|
homepage "https://www.perl.org/"
|
|
revision 1
|
|
head "git://perl5.git.perl.org/perl.git", :branch => "blead"
|
|
|
|
stable do
|
|
url "http://www.cpan.org/src/5.0/perl-5.24.0.tar.xz"
|
|
mirror "https://mirrors.ocf.berkeley.edu/debian/pool/main/p/perl/perl_5.24.0.orig.tar.xz"
|
|
sha256 "a9a37c0860380ecd7b23aa06d61c20fc5bc6d95198029f3684c44a9d7e2952f2"
|
|
|
|
# Fixes Time::HiRes module bug related to the presence of clock_gettime
|
|
# https://rt.perl.org/Public/Bug/Display.html?id=128427
|
|
# Merged upstream, should be in the next release.
|
|
if DevelopmentTools.clang_build_version >= 800
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/b18137128c4e0cb7e92e9ee007a9f78bc9d03b21/perl/clock_gettime.patch"
|
|
sha256 "612825c24ed19d6fa255bb42af59dff46ee65c16ea77abf4a59b754aa8ab05ac"
|
|
end
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 "2d17be7f00decaec2d9d9d25335962e78319b5ee121112ae6e6325227c50313a" => :sierra
|
|
sha256 "bbc3eb4e2a1e7d9585918862adf718e5be80e4dae793e547bf71da8a07b372d8" => :el_capitan
|
|
sha256 "7f4410ad668128cb66085a8e7fa995258cb60ba8b2551ab170ae612d3101d021" => :yosemite
|
|
end
|
|
|
|
option "with-dtrace", "Build with DTrace probes"
|
|
option "without-test", "Skip running the build test suite"
|
|
|
|
deprecated_option "with-tests" => "with-test"
|
|
|
|
def install
|
|
if MacOS.version == :el_capitan && MacOS::Xcode.installed? && MacOS::Xcode.version >= "8.0"
|
|
%w[cpan/IPC-Cmd/lib/IPC/Cmd.pm dist/Time-HiRes/Changes
|
|
dist/Time-HiRes/HiRes.pm dist/Time-HiRes/HiRes.xs
|
|
dist/Time-HiRes/Makefile.PL dist/Time-HiRes/fallback/const-c.inc
|
|
dist/Time-HiRes/t/clock.t pod/perl588delta.pod
|
|
pod/perlperf.pod].each do |f|
|
|
inreplace f do |s|
|
|
s.gsub! "clock_gettime", "perl_clock_gettime"
|
|
s.gsub! "clock_getres", "perl_clock_getres", false
|
|
end
|
|
end
|
|
end
|
|
|
|
args = %W[
|
|
-des
|
|
-Dprefix=#{prefix}
|
|
-Dprivlib=#{lib}/perl5/#{version}
|
|
-Dsitelib=#{lib}/perl5/site_perl/#{version}
|
|
-Dotherlibdirs=#{HOMEBREW_PREFIX}/lib/perl5/site_perl/#{version}
|
|
-Dperlpath=#{opt_bin}/perl
|
|
-Dstartperl=#!#{opt_bin}/perl
|
|
-Dman1dir=#{man1}
|
|
-Dman3dir=#{man3}
|
|
-Duseshrplib
|
|
-Duselargefiles
|
|
-Dusethreads
|
|
]
|
|
|
|
args << "-Dusedtrace" if build.with? "dtrace"
|
|
args << "-Dusedevel" if build.head?
|
|
|
|
system "./Configure", *args
|
|
system "make"
|
|
|
|
# OS X El Capitan's SIP feature prevents DYLD_LIBRARY_PATH from being
|
|
# passed to child processes, which causes the make test step to fail.
|
|
# https://rt.perl.org/Ticket/Display.html?id=126706
|
|
# https://github.com/Homebrew/legacy-homebrew/issues/41716
|
|
if MacOS.version < :el_capitan
|
|
system "make", "test" if build.with? "test"
|
|
end
|
|
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
By default non-brewed cpan modules are installed to the Cellar. If you wish
|
|
for your modules to persist across updates we recommend using `local::lib`.
|
|
|
|
You can set that up like this:
|
|
PERL_MM_OPT="INSTALL_BASE=$HOME/perl5" cpan local::lib
|
|
echo 'eval "$(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)"' >> #{shell_profile}
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.pl").write "print 'Perl is not an acronym, but JAPH is a Perl acronym!';"
|
|
system "#{bin}/perl", "test.pl"
|
|
end
|
|
end
|