27 lines
842 B
BlitzBasic
27 lines
842 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.2.1.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "b4d87221d76f7d12e6771897b5940902"
|
|
SRC_URI[sha256sum] = "d9c2ac59f42e65aac5f500f0548ea8056fd79c9c5285e5af324d833e2a84c305"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
S = "${WORKDIR}/tmate-2.2.1"
|
|
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
|
|
}
|
|
|