mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

We are now using vendoring from the upstream repos, or creating our own vendor directory. We no longer need these source only recipes. Add an inherit to each recipe to warn that it will be removed in the future. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
31 lines
877 B
BlitzBasic
31 lines
877 B
BlitzBasic
DESCRIPTION = "PTY interface for Go"
|
|
HOMEPAGE = "https://github.com/creack/pty"
|
|
SECTION = "devel/go"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://License;md5=93958070863d769117fa33b129020050"
|
|
|
|
SRCNAME = "pty"
|
|
|
|
PKG_NAME = "github.com/creack/${SRCNAME}"
|
|
SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "05017fcccf23c823bfdea560dcc958a136e54fb7"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meta-virt-depreciated-warning
|
|
|
|
do_install() {
|
|
install -d ${D}${prefix}/local/go/src/${PKG_NAME}
|
|
cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/
|
|
}
|
|
|
|
SYSROOT_PREPROCESS_FUNCS += "go_pty_sysroot_preprocess"
|
|
|
|
go_pty_sysroot_preprocess () {
|
|
install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME}
|
|
cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME})
|
|
}
|
|
|
|
FILES:${PN} += "${prefix}/local/go/src/${PKG_NAME}/*"
|