prezto/modules/perl/init.zsh

55 lines
1.2 KiB
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Enables local Perl module installation on Mac OS X and defines aliases.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2012-07-23 21:00:44 +02:00
# Return if requirements are not found.
if (( ! $+commands[perl] )); then
return 1
fi
if [[ "$OSTYPE" == darwin* ]]; then
# Perl is slow; cache its output.
cache_file="${0:h}/cache.zsh"
perl_path="$HOME/Library/Perl/5.12"
if [[ -f "$perl_path/lib/perl5/local/lib.pm" ]]; then
manpath=("$perl_path/man" $manpath)
if [[ ! -s "$cache_file" ]]; then
perl -I$perl_path/lib/perl5 -Mlocal::lib=$perl_path >! "$cache_file"
fi
source "$cache_file"
fi
unset perl_path
unset cache_file
# Set environment variables for launchd processes.
for env_var in PERL_LOCAL_LIB_ROOT PERL_MB_OPT PERL_MM_OPT PERL5LIB; do
launchctl setenv "$env_var" "${(P)env_var}" &!
done
unset env_var
fi
2011-08-28 21:28:09 +02:00
# Aliases
2012-06-13 01:16:59 +02:00
# General
alias pd='perldoc'
alias pe='perl -wlne'
# Perlbrew
2012-06-13 01:20:03 +02:00
alias pb='perlbrew'
alias pba='perlbrew available'
2011-03-14 06:43:33 +01:00
alias pbi='perlbrew install'
alias pbl='perlbrew list'
alias pbo='perlbrew off'
2012-06-13 01:20:03 +02:00
alias pbO='perlbrew switch-off'
2011-03-14 06:43:33 +01:00
alias pbs='perlbrew switch'
alias pbu='perlbrew use'
2012-06-13 01:20:03 +02:00
alias pbx='perlbrew uninstall'
2011-03-14 06:43:33 +01:00