tmux_3.5.bb 888 B

12345678910111213141516171819202122232425
  1. SUMMARY = "Terminal multiplexer"
  2. HOMEPAGE = "http://tmux.sourceforge.net"
  3. SECTION = "console/utils"
  4. LICENSE = "ISC"
  5. LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107"
  6. DEPENDS = "ncurses libevent bison-native"
  7. SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz"
  8. SRC_URI[sha256sum] = "2fe01942e7e7d93f524a22f2c883822c06bc258a4d61dba4b407353d7081950f"
  9. UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases"
  10. UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)"
  11. inherit autotools pkgconfig
  12. PACKAGECONFIG ??= ""
  13. PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter,"
  14. do_configure:prepend() {
  15. # The 'compat' directory is needed for output during the build but it's
  16. # not automatically created when building outside the source directory.
  17. mkdir -p ${B}/compat
  18. }