diff options
author | Kang Kai <kai.kang@windriver.com> | 2012-08-31 18:00:09 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-10 12:58:59 +0100 |
commit | 16be305db800c976e6241973e0cf176b954de8e4 (patch) | |
tree | f4ddd36cb6311ee4d21eea71633f17b44b821388 | |
parent | 0141967e4a721586c2c04252aae3b8e3732f53c3 (diff) | |
download | openembedded-core-contrib-16be305db800c976e6241973e0cf176b954de8e4.tar.gz |
libenv-perl: add it
Just add it for LSB 4.1 perl tests.
[Yocto #3031]
Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/recipes-lsb4/perl/libenv-perl_1.03.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-lsb4/perl/libenv-perl_1.03.bb b/meta/recipes-lsb4/perl/libenv-perl_1.03.bb new file mode 100644 index 00000000000..6cc4ed43923 --- /dev/null +++ b/meta/recipes-lsb4/perl/libenv-perl_1.03.bb @@ -0,0 +1,22 @@ +SUMMARY = "Perl module that imports environment variables as scalars or arrays." +DESCRIPTION = "Perl maintains environment variables in a special hash named %ENV. \ +For when this access method is inconvenient, the Perl module Env allows environment \ +variables to be treated as scalar or array variables." + +HOMEPAGE = "http://search.cpan.org/~flora/Env/" +SECTION = "libs" +LICENSE = "Artistic-1.0 | GPL-1.0+" +PR = "r0" + +LIC_FILES_CHKSUM = "file://LICENSE;md5=421c6c0cda752f4977b8287ecebf6061" + +SRC_URI = "http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Env-${PV}.tar.gz" + +SRC_URI[md5sum] = "471070589ae99415d8956e042c2f12da" +SRC_URI[sha256sum] = "de4134ed0c4485e64e7f0fe3e65bab81917cb400cc0d316979df8322d0bdaecc" + +S = "${WORKDIR}/Env-${PV}" + +inherit cpan + +BBCLASSEXTEND = "native" |