2014-06-14 04:55:27 +00:00
|
|
|
#
|
2016-05-28 17:09:36 +00:00
|
|
|
# Copyright (C) 2009-2016 OpenWrt.org
|
2014-06-14 04:55:27 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=tmux
|
2018-04-17 16:17:34 +00:00
|
|
|
PKG_VERSION:=2.7
|
2014-06-14 04:55:27 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2015-07-17 10:48:35 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/tmux/tmux/releases/download/$(PKG_VERSION)
|
2018-04-17 16:17:34 +00:00
|
|
|
PKG_HASH:=9ded7d100313f6bc5a87404a4048b3745d61f2332f99ec1400a7c4ed9485d452
|
2014-06-14 04:59:52 +00:00
|
|
|
PKG_MAINTAINER:=Maxim Storchak <m.storchak@gmail.com>
|
2015-05-13 10:39:48 +00:00
|
|
|
|
2014-08-09 12:42:09 +00:00
|
|
|
PKG_LICENSE:=ISC
|
2014-12-14 11:04:49 +00:00
|
|
|
PKG_LICENSE_FILES:=COPYING
|
2014-06-14 04:55:27 +00:00
|
|
|
|
2015-05-13 10:39:48 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2014-06-14 04:55:27 +00:00
|
|
|
PKG_INSTALL:=1
|
2017-06-02 00:50:09 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2014-06-14 04:55:27 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/tmux
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2016-10-23 17:42:58 +00:00
|
|
|
SUBMENU:=Terminal
|
2014-06-14 04:55:27 +00:00
|
|
|
TITLE:=Terminal multiplexer
|
|
|
|
DEPENDS:=+libncurses +libevent2 +libpthread +librt
|
2017-06-02 00:50:09 +00:00
|
|
|
URL:=http://tmux.github.io/
|
2014-06-14 04:55:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/tmux/description
|
|
|
|
tmux is a modern, BSD-licensed alternative to GNU screen.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/tmux/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tmux $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,tmux))
|