class Perl < Formula desc "Highly capable, feature-rich programming language" homepage "https://www.perl.org/" url "https://www.cpan.org/src/5.0/perl-5.28.2.tar.gz" sha256 "aa95456dddb3eb1cc5475fed4e08f91876bea71fb636fba6399054dfbabed6c7" head "https://perl5.git.perl.org/perl.git", :branch => "blead" bottle do sha256 "ce4f3a2f8d1ca63d2b0013c73b287d36305fb2d8ac6c53e26c8b97dfa75d53e8" => :mojave sha256 "fe14dc8da5e75618d32ed5f04ed9c93d51848614edc429e254d926c7806df959" => :high_sierra sha256 "7e41c1220e5b5cc0e471c52d7729b4e69aea3fa39580b79c96a01b84ad693430" => :sierra end # Prevent site_perl directories from being removed skip_clean "lib/perl5/site_perl" def install 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 << "-Dusedevel" if build.head? system "./Configure", *args system "make" system "make", "test" system "make", "install" end def caveats; <<~EOS 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=$HOME/perl5)"' >> #{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