28 lines
867 B
BlitzBasic
28 lines
867 B
BlitzBasic
SUMMARY = "Instant terminal sharing"
|
|
HOMEPAGE = "https://tmate.io/"
|
|
SECTION = "console/utils"
|
|
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107"
|
|
|
|
DEPENDS = "ncurses libevent msgpack-c libssh"
|
|
|
|
SRC_URI = " \
|
|
https://github.com/tmate-io/tmate/archive/2.4.0.tar.gz \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "5571be65f5c54a35cc92ca7c9fb031c9"
|
|
SRC_URI[sha256sum] = "62b61eb12ab394012c861f6b48ba0bc04ac8765abca13bdde5a4d9105cb16138"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
S = "${WORKDIR}/tmate-2.4.0"
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter,"
|
|
|
|
do_configure_prepend() {
|
|
# The 'compat' directory is needed for output during the build but it's
|
|
# not automatically created when building outside the source directory.
|
|
mkdir ${B}/compat
|
|
}
|