diff options
Diffstat (limited to 'meta-oe/recipes-extended/tmux/tmux_3.5.bb')
-rw-r--r-- | meta-oe/recipes-extended/tmux/tmux_3.5.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/tmux/tmux_3.5.bb b/meta-oe/recipes-extended/tmux/tmux_3.5.bb new file mode 100644 index 0000000000..33f709681d --- /dev/null +++ b/meta-oe/recipes-extended/tmux/tmux_3.5.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Terminal multiplexer" | ||
2 | HOMEPAGE = "http://tmux.sourceforge.net" | ||
3 | SECTION = "console/utils" | ||
4 | |||
5 | LICENSE = "ISC" | ||
6 | LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107" | ||
7 | |||
8 | DEPENDS = "ncurses libevent bison-native" | ||
9 | |||
10 | SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz" | ||
11 | SRC_URI[sha256sum] = "2fe01942e7e7d93f524a22f2c883822c06bc258a4d61dba4b407353d7081950f" | ||
12 | |||
13 | UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" | ||
14 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)" | ||
15 | |||
16 | inherit autotools pkgconfig | ||
17 | |||
18 | PACKAGECONFIG ??= "" | ||
19 | PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," | ||
20 | |||
21 | do_configure:prepend() { | ||
22 | # The 'compat' directory is needed for output during the build but it's | ||
23 | # not automatically created when building outside the source directory. | ||
24 | mkdir -p ${B}/compat | ||
25 | } | ||