Makefile 1017 B

123456789101112131415161718192021222324252627282930313233
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= tmux
  5. PKG_VERSION:= 3.2a
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 551553a4f82beaa8dadc9256800bcc284d7c000081e47aa6ecbb6ff36eacd05f
  8. PKG_DESCR:= terminal multiplexer
  9. PKG_SECTION:= sys/utils
  10. PKG_BUILDDEP:= libevent ncurses
  11. PKG_DEPENDS:= libevent libncurses
  12. PKG_NEEDS:= threads locale
  13. PKG_URL:= http://tmux.github.io
  14. PKG_SITES:= https://github.com/tmux/tmux/releases/download/$(PKG_VERSION)/
  15. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
  16. include $(ADK_TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,TMUX,tmux,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  18. AUTOTOOL_STYLE:= autoreconf
  19. TARGET_LDFLAGS+= -ltinfo
  20. CONFIGURE_ARGS+= --disable-static
  21. tmux-install:
  22. $(INSTALL_DIR) $(IDIR_TMUX)/usr/bin
  23. $(INSTALL_BIN) $(WRKINST)/usr/bin/tmux \
  24. $(IDIR_TMUX)/usr/bin
  25. include $(ADK_TOPDIR)/mk/pkg-bottom.mk