diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-29 19:48:57 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-29 19:48:57 +0000 |
commit | 98e1f73a0cc6a615a209d3360eb9a99853224428 (patch) | |
tree | c6c60aa9a809afbec08757158cf2d9a70b57cf6c /perl/perl_5.8.3.oe | |
parent | 6593918572ea5778e4e67abd88ed646563ac4dff (diff) |
Perl: add metadata and fix dependency
BKrev: 40687da9IPMXcW0cn55y6QRgSh40kQ
Diffstat (limited to 'perl/perl_5.8.3.oe')
-rw-r--r-- | perl/perl_5.8.3.oe | 23 |
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 +} |