Advertisement
oylenshpeegul

Untitled

Feb 4th, 2014
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.57 KB | None | 0 0
  1. # get source code
  2. git clone https://github.com/Perl/perl5.git perl-20140201
  3. cd !$
  4.  
  5. # switch to branch with subroutine signatures
  6. git checkout zefram/purple_signatures
  7.  
  8. # build Perl
  9. sh Configure -de -Dusedevel -Dprefix=$HOME/perl5/perlbrew/perls/perl-zefram-purple_signatures
  10. make
  11. make test
  12. make install
  13.  
  14. # fix up the names of the executables
  15. cd ~/perl5/perlbrew/perls/perl-zefram-purple_signatures/bin
  16. rename 's/5.19.9$//' *
  17.  
  18. # oh, but perldoc has 5.19.9 in the shebang line...
  19. ln -s perl perl5.19.9
  20.  
  21. # now try it out!
  22. perlbrew switch perl-zefram-purple_signatures
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement