mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

As introduced in the oe-core post: https://lists.openembedded.org/g/openembedded-core/message/157623 SRC_URIs without an explicit branch will generate warnings, and eventually be an error. We run the provided conversion script to make sure that meta-virt is ready for the change. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
29 lines
823 B
BlitzBasic
29 lines
823 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"
|
|
|
|
SRCREV = "05017fcccf23c823bfdea560dcc958a136e54fb7"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
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}/*"
|