mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-31 03:50:15 -07:00
5 lines
276 B
Text
5 lines
276 B
Text
if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.dll") ]]; then
|
|
_perlver_min=$(perl -e '$v = $^V->{version}; print $v->[0].".".($v->[1]);')
|
|
_perlver_max=$(perl -e '$v = $^V->{version}; print $v->[0].".".($v->[1]+1);')
|
|
depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
|
|
fi
|