gitprep / setup_module /
Newer Older
13 lines | 0.498kb
improved install process
Yuki Kimoto authored on 2013-04-09
1
#!/bin/sh
add cpanm home
Yuki Kimoto authored on 2013-10-08
2
CUR_DIR_ABS=$(cd $(dirname $0); pwd)
3
export PERL_CPANM_HOME=$CUR_DIR_ABS/setup
improved install process
Yuki Kimoto authored on 2013-04-09
4
perl cpanm -n -l extlib Module::CoreList
cleanup cpanfile
Yuki Kimoto authored on 2016-03-26
5
perl -Iextlib/lib/perl5 cpanm -f -L extlib ExtUtils::MakeMaker
6
perl -Iextlib/lib/perl5 cpanm -L extlib --installdeps .
add gitprep-shell wrappter s...
Yuki Kimoto authored on 2016-05-04
7

            
8
# Create gitprep-shell script
9
CURRENT_PERL=`which perl`
10
echo '#!/bin/sh' > script/gitprep-shell
11
echo -n "$CURRENT_PERL $CUR_DIR_ABS/script/gitprep-shell-raw" >> script/gitprep-shell
12
echo ' $*' >> script/gitprep-shell
13
chmod 755 script/gitprep-shell