blob: 51872228386d4661e1630df08d705990ae3cf4db [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "Terminal multiplexer"
2HOMEPAGE = "http://tmux.sourceforge.net"
3SECTION = "console/utils"
4
5LICENSE = "ISC"
6LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107"
7
8DEPENDS = "ncurses libevent"
9
10SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz"
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060011SRC_URI[md5sum] = "8eee5883b9f6550fa4efaad0c9ec38f3"
12SRC_URI[sha256sum] = "e4fd347843bd0772c4f48d6dde625b0b109b7a380ff15db21e97c11a4dcdf93f"
Brad Bishop316dfdd2018-06-25 12:45:53 -040013
Andrew Geissler82c905d2020-04-13 13:39:40 -050014UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases"
15
Brad Bishop316dfdd2018-06-25 12:45:53 -040016inherit autotools pkgconfig
17
18PACKAGECONFIG ??= ""
19PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter,"
20
Patrick Williams213cb262021-08-07 19:21:33 -050021do_configure:prepend() {
Brad Bishop316dfdd2018-06-25 12:45:53 -040022 # The 'compat' directory is needed for output during the build but it's
23 # not automatically created when building outside the source directory.
Andrew Geisslerd688a012020-09-18 13:36:00 -050024 mkdir -p ${B}/compat
Brad Bishop316dfdd2018-06-25 12:45:53 -040025}