mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-10 16:40:03 +00:00
91842a1bc8
Upgrade ipc-run from 0.96 to 0.99 Signed-off-by: Hong Liu <hongl.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
799 B
BlitzBasic
25 lines
799 B
BlitzBasic
DESCRIPTION = "\
|
|
IPC::Run allows you run and interact with child processes \
|
|
using files, pipes, and pseudo-ttys. Both system()-style and scripted \
|
|
usages are supported and may be mixed. Likewise, functional and OO API \
|
|
styles are both supported and may be mixed."
|
|
HOMEPAGE = "https://metacpan.org/release/IPC-Run"
|
|
SECTION = "libs"
|
|
LICENSE = "Artistic-1.0 | GPL-1.0+"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=0ebd37caf53781e8b7223e6b99b63f4e"
|
|
DEPENDS = "perl"
|
|
|
|
SRC_URI = "git://github.com/toddr/IPC-Run.git"
|
|
SRCREV = "5b990b641a73eb0bc1e2b4c19daeef390d4d797a"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cpan
|
|
|
|
EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}"
|
|
|
|
do_compile() {
|
|
export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')"
|
|
cpan_do_compile
|
|
}
|