You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
982 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=tmux
  3. PKG_VERSION:=2.9a
  4. PKG_RELEASE:=1
  5. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  6. PKG_SOURCE_URL:=https://github.com/tmux/tmux/releases/download/$(PKG_VERSION)
  7. PKG_HASH:=839d167a4517a6bffa6b6074e89a9a8630547b2dea2086f1fad15af12ab23b25
  8. PKG_MAINTAINER:=Maxim Storchak <m.storchak@gmail.com>
  9. PKG_LICENSE:=ISC
  10. PKG_LICENSE_FILES:=COPYING
  11. PKG_BUILD_PARALLEL:=1
  12. PKG_INSTALL:=1
  13. PKG_FIXUP:=autoreconf
  14. include $(INCLUDE_DIR)/package.mk
  15. define Package/tmux
  16. SECTION:=utils
  17. CATEGORY:=Utilities
  18. SUBMENU:=Terminal
  19. TITLE:=Terminal multiplexer
  20. DEPENDS:=+libncurses +libevent2 +libpthread +librt
  21. URL:=http://tmux.github.io/
  22. endef
  23. define Package/tmux/description
  24. tmux is a modern, BSD-licensed alternative to GNU screen.
  25. endef
  26. define Package/tmux/conffiles
  27. /etc/tmux.conf
  28. endef
  29. define Package/tmux/install
  30. $(INSTALL_DIR) $(1)/usr/bin
  31. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tmux $(1)/usr/bin/
  32. endef
  33. $(eval $(call BuildPackage,tmux))