6 lines
121 B
Bash
6 lines
121 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
dest="/lib/perl5/site_perl/$(perl -e 'print substr($^V,1)')/"
|
||
|
make DESTDIR="$dest" install
|
||
|
rm -fr "$dest/lib"
|