mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
libmime-types-perl: add recipe
Add recipe for libmime-types-perl. Enable to create ptest sub-package at same time. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
765436ee81
commit
ffe0b3cc75
16
meta-perl/recipes-perl/libmime/files/run-ptest
Normal file
16
meta-perl/recipes-perl/libmime/files/run-ptest
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
for case in `find t -type f -name '*.t'`; do
|
||||
perl $case >$case.output 2>&1
|
||||
ret=$?
|
||||
cat $case.output
|
||||
if [ $ret -ne 0 ]; then
|
||||
echo "FAIL: ${case%.t}"
|
||||
elif grep -i 'SKIP' $case.output; then
|
||||
echo "SKIP: ${case%.t}"
|
||||
else
|
||||
echo "PASS: ${case%.t}"
|
||||
fi
|
||||
|
||||
rm -f $case.output
|
||||
done
|
||||
26
meta-perl/recipes-perl/libmime/libmime-types-perl_2.04.bb
Normal file
26
meta-perl/recipes-perl/libmime/libmime-types-perl_2.04.bb
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
SUMMARY = "MIME::Types - Definition of MIME types"
|
||||
DESCRIPTION = "MIME types are used in MIME compliant lines, for instance \
|
||||
as part of e-mail and HTTP traffic, to indicate the type of content which \
|
||||
is transmitted. Sometimes real knowledge about a mime-type is need.\
|
||||
\n\
|
||||
This module maintains a set of MIME::Type objects, which each describe \
|
||||
one known mime type."
|
||||
HOMEPAGE = "http://search.cpan.org/~markov/MIME-Types-${PV}"
|
||||
SECTION = "libraries"
|
||||
|
||||
LICENSE = "Artistic-1.0|GPLv1+"
|
||||
LIC_FILES_CHKSUM = "file://META.yml;beginline=11;endline=11;md5=963ce28228347875ace682de56eef8e8"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/MIME-Types-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
"
|
||||
SRC_URI[md5sum] = "e292bbf7756bb4999407f3f660697168"
|
||||
SRC_URI[sha256sum] = "22b6069d372d587b1f2ecc6d0aaf50fb5c64920caed8c214b9884e64538acc8f"
|
||||
|
||||
S = "${WORKDIR}/MIME-Types-${PV}"
|
||||
|
||||
inherit cpan ptest
|
||||
|
||||
do_install_ptest () {
|
||||
cp -r ${B}/t ${D}${PTEST_PATH}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user