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.

45 lines
1023 B

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