2014-06-14 04:55:27 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=tmux
|
2020-05-03 13:11:12 +00:00
|
|
|
PKG_VERSION:=3.1b
|
2018-11-05 19:44:05 +00:00
|
|
|
PKG_RELEASE:=1
|
2014-06-14 04:55:27 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2019-12-09 15:26:52 +00:00
|
|
|
PKG_SOURCE_URL:=https://codeload.github.com/tmux/tmux/tar.gz/$(PKG_VERSION)?
|
2020-05-03 13:11:12 +00:00
|
|
|
PKG_HASH:=100d0a11a822927172e8b983b5f9401476bd9f2cfa6758512f762b9ad74f9536
|
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
|
2019-09-12 12:13:21 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:nicholas_marriott:tmux
|
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
|
|
|
|
|
2018-06-17 20:31:35 +00:00
|
|
|
define Package/tmux/conffiles
|
|
|
|
/etc/tmux.conf
|
|
|
|
endef
|
|
|
|
|
2014-06-14 04:55:27 +00:00
|
|
|
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))
|