summaryrefslogtreecommitdiff
path: root/perl/perl_5.8.3.oe
diff options
context:
space:
mode:
Diffstat (limited to 'perl/perl_5.8.3.oe')
-rw-r--r--perl/perl_5.8.3.oe23
1 files changed, 23 insertions, 0 deletions
diff --git a/perl/perl_5.8.3.oe b/perl/perl_5.8.3.oe
index e69de29bb2..5982d7f0e2 100644
--- a/perl/perl_5.8.3.oe
+++ b/perl/perl_5.8.3.oe
@@ -0,0 +1,23 @@
+DESCRIPTION = "Perl is a popular scripting language."
+SECTION = "developing"
+PRIORITY = "optional"
+RDEPENDS = "libc6 db3"
+DEPENDS = "virtual/libc db3 perl-native"
+SRC_URI = "http://ftp.funet.fi/pub/CPAN/src/perl-${PV}.tar.gz"
+
+do_configure() {
+ cd Cross
+ oe_runmake patch
+}
+
+do_compile() {
+ cd Cross
+ oe_runmake perl
+}
+
+do_install() {
+ rm -rf install_me_here
+ make install
+ mv install_me_here/* ${D}
+ rmdir install_me_here
+}