summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/tmux/tmux_3.1c.bb
diff options
context:
space:
mode:
authorZang Ruochen <zangrc.fnst@cn.fujitsu.com>2020-11-09 15:11:57 +0800
committerKhem Raj <raj.khem@gmail.com>2020-11-09 13:41:02 -0800
commit5b949a4c13e9863d23441252d1e4cf19ac72c2b9 (patch)
tree1debd8de7e0b1ec9c196be81b31e22839cec0713 /meta-oe/recipes-extended/tmux/tmux_3.1c.bb
parentf36802756ef075e7f905478b63feb9a13586f2f3 (diff)
downloadmeta-openembedded-5b949a4c13e9863d23441252d1e4cf19ac72c2b9.tar.gz
tmux: upgrade 3.1b -> 3.1c
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/tmux/tmux_3.1c.bb')
-rw-r--r--meta-oe/recipes-extended/tmux/tmux_3.1c.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/tmux/tmux_3.1c.bb b/meta-oe/recipes-extended/tmux/tmux_3.1c.bb
new file mode 100644
index 0000000000..7cac48eb6c
--- /dev/null
+++ b/meta-oe/recipes-extended/tmux/tmux_3.1c.bb
@@ -0,0 +1,25 @@
1SUMMARY = "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"
11SRC_URI[md5sum] = "7301d3fa12f35051edb185496766c745"
12SRC_URI[sha256sum] = "918f7220447bef33a1902d4faff05317afd9db4ae1c9971bef5c787ac6c88386"
13
14UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases"
15
16inherit autotools pkgconfig
17
18PACKAGECONFIG ??= ""
19PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter,"
20
21do_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}