Editing Perl

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
-
Because Maemo is based on Debian, and because perl is such a big part of the debian OS, Maemo contains a full-blown Perl platform. This page aims to document and describe this environment so developers can take advantage of it when programming on the Maemo platform.
+
'''This wiki page describes the Perl environment on the Maemo Platform'''
-
== Fremantle ==
+
Because Maemo is based on debian, and because perl is such a big part of the debian OS, Maemo contains a full-blown Perl platform. This page is designed to document and describe this environment so that developers can take advantage of it when programming on the Maemo platform.
-
The current version of perl shipped with the [[Nokia N900|N900]] is 5.8.3.
 
-
One caveat of perl development on the N900 is that there is a fuller Perl distribution in the SDK than on the device. This means not just that there are fewer modules on the device, it means that rather fundamental Perl modules are missing form the normal Debian version of Perl on the device. This is done to save space; the device itself is embedded linux, the root files system is rather small, i.e. 228 MB.
+
The current perl in the [[N900]] is 5.8.3.
-
You will find it difficult to build Perl modules on the device if you do not add the necessary Perl tools, namely <code>perl</code> and <code>perl-modules</code>. Without these key tools, many of the modules used to build Perl modules won't exist on the device and you won't be able to add software written in Perl. Here is an example of what is shipped with both the SDK and device environments;
 
-
{| class="wikitable"
+
One caveat of perl development on the N900 is that there is a fuller perl distribution in the SDK than on the device. This means not just that there are fewer modules on the device, it means that rather fundamental perl modules are missing form the normal debian version of perl on the device. This is done to save space; the device itself is embedded linux, so as much room as possible is saved for only necessary tools.
-
|+ Installed Perl packages
+
-
|-
+
-
! In the SDK !! On device
+
-
|-
+
-
| liblocale-gettext-perl  ''1.01-17osso2''<br/>
+
-
libtimedate-perl  ''1.1600-4osso''<br/>
+
-
perl ''5.8.3-3osso10''<br/>
+
-
perl-base ''5.8.3-3osso10''<br/>
+
-
perl-modules ''5.8.3-3osso10''<br/>
+
-
| liblocale-gettext-perl   ''1.01-17osso2''<br/>
+
-
perl-base ''5.8.3-3osso10''
+
-
|}
+
-
The SDK repositories are here:
+
You will find it difficult to build perl modules on the device if you don not add the necessary perl tools, namely {{{perl}}} and {{{perl-modules}}}.
-
deb http://repository.maemo.org fremantle/sdk free non-free
 
-
deb http://repository.maemo.org fremantle/tools free non-free
 
-
 
-
If you wish to add Perl modules what I recommend is to bring in the necessary tools, namely the <code>perl</code> package and the <code>perl-modules</code> package. You can do that by adding the repositories that supply modules to the SDK. Of course you can build Perl yourself, but it is already built for the device's architecture and it is in a known good state, so it is much easier to just take the already built Perl binaries for the N900. (There are later versions of Perl built and packaged for the device, I'll eventually provide links to those, until then, you'll have to rely on Google.)
 
-
 
-
Once you have added the SDK repositories to your <code>/etc/apt/sources.list</code>, simply run:
 
-
apt-get update
 
-
apt-get install perl perl-modules
 
-
 
-
Now you should be ready to start bringing other modules in.
 
-
 
-
=== Git repo at Gitorious ===
 
-
 
-
I have packaged one module so far, I hope to bring in many more perl modules. If you package something for the device, why not contribute your module to the maemo repos and/or ask me to pull it into the [http://gitorious.org/maemo-perl-packages/maemo-perl-packages/trees/master gitorious repo that] I have set up?
 
-
 
-
=== dh-make-perl at garage.maemo.org ===
 
-
 
-
Just ported <code>dh-make-perl</code> for Maemo fremantle. The packages ported are available at [http://dh-make-perl.garage.maemo.org]. It includes among
 
-
 
-
Some notes for people who want to port perl modules for ARM. I found out that I had to change the following (change your proxy settings as appropiate):
 
-
 
-
<source lang="bash">
 
-
# Environment vars
 
-
SBOX_REDIRECT_IGNORE=/usr/bin/perl
 
-
export  SBOX_REDIRECT_IGNORE
 
-
unset PERL5LIB
 
-
export PATH=/usr/bin/dh7:/usr/bin:$PATH
 
-
export DISPLAY=:2
 
-
export http_proxy=http://172.16.0.1:3128
 
-
export https_proxy=http://172.16.0.1:3128
 
-
export ftp_proxy=http://172.16.0.1:3128
 
-
export GIT_SSL_NO_VERIFY=1
 
-
echo "127.0.0.1 localhost" > /etc/hosts
 
-
</source>
 
-
 
-
Nasty script to substitute <code>/usr/bin/man</code> which breaks <code>dh_installdocs</code>
 
-
 
-
<source lang="bash">
 
-
#!/bin/bash
 
-
n=$#
 
-
echo "$# $1 $2 $n"
 
-
while [ $n -ne 1 ]; do
 
-
echo "$# $1 $2 $n"
 
-
p=$1
 
-
shift
 
-
n=$#
 
-
done
 
-
p=$1
 
-
echo $p
 
-
/usr/lib/man-db/manconv -f UTF-8:ISO-8859-1 -t UTF-8//IGNORE  $p
 
-
</source>
 
-
 
-
Some packages ported include ssleay and some others which are needed prerequisites for <code>dh-make-perl</code>.
 
[[Category:Software]]
[[Category:Software]]
-
[[Category:Development]]
 

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)
Retrieved from "http://wiki.maemo.org/Perl"