One day I decide to install Perl on my Kamikaze 7.09. I successfully compiled all packages and realized that installing all of it (~145) manually will last forever.
Two simple commands help me stay young and have full perl installed.

At first I create list of all perl packages is in /tmp/perlpackages.txt:

ipkg list perl* > /tmp/perlpackages.txt

Then it is possible to install all packages listed in /tmp/perlpackages.txt

for temp in $(awk '{print $1}' /tmp/perlpackages.txt); do ipkg install  $temp; sleep 3; done

Hope this helpfull.