diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/perl/perl-native_5.8.4.bb | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/perl/perl-native_5.8.4.bb')
-rw-r--r-- | packages/perl/perl-native_5.8.4.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/perl/perl-native_5.8.4.bb b/packages/perl/perl-native_5.8.4.bb index e69de29bb2..da30274627 100644 --- a/packages/perl/perl-native_5.8.4.bb +++ b/packages/perl/perl-native_5.8.4.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "Perl is a popular scripting language." +HOMEPAGE = "http://www.perl.org/" +LICENSE = "Artistic|GPL" + +SECTION = "libs" +inherit native + +DEPENDS = "db3-native gdbm-native" + +SRC_URI = "http://ftp.funet.fi/pub/CPAN/src/perl-${PV}.tar.gz" +S = "${WORKDIR}/perl-${PV}" + +do_configure () { + ./Configure \ + -Dcc="${BUILD_CC}" \ + -Dcflags="${BUILD_CFLAGS}" \ + -Dldflags="${BUILD_LDFLAGS} -Wl,-rpath,${STAGING_LIBDIR}" \ + -Dusethreads \ + -Duselargefiles \ + -Dprefix=${prefix} \ + -Dvendorprefix=${prefix} \ + -Dsiteprefix=${prefix}/local \ + -Dman1ext=1 \ + -Dman3ext=3perl \ + -Uafs \ + -Ud_csh \ + -Uusesfio \ + -Uusenm -des + sed 's!${STAGING_DIR}/bin!${STAGING_BINDIR}!; + s!${STAGING_DIR}/lib!${STAGING_LIBDIR}!' < config.sh > config.sh.new + mv config.sh.new config.sh +} |