2014-06-14 04:55:27 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=tmux
|
2021-06-14 23:30:59 +00:00
|
|
|
PKG_VERSION:=3.2a
|
2021-04-21 21:05:36 +00:00
|
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
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)?
|
2021-06-14 23:30:59 +00:00
|
|
|
PKG_HASH:=497bc4ee16f10b53b161bf0253b6f9e20cd0f86c5d0104f149212cb0778ae13a
|
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
|
2021-04-21 21:05:36 +00:00
|
|
|
DEPENDS:=+libncurses +libevent2-core +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))
|