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.

42 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=dvtm
  9. PKG_VERSION:=0.15
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=dvtm-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://www.brain-dump.org/projects/dvtm/
  13. PKG_HASH:=8f2015c05e2ad82f12ae4cf12b363d34f527a4bbc8c369667f239e4542e1e510
  14. PKG_MAINTAINER:=Yunfan Jiang <jyf1987@gmail.com>
  15. PKG_LICENSE:=MIT/X
  16. PKG_LICENSE_FILES:=LICENSE
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/dvtm
  19. SECTION:=utils
  20. CATEGORY:=Utilities
  21. SUBMENU:=Terminal
  22. DEPENDS:=+libncursesw
  23. TITLE:=dynamic virtual terminal manager
  24. URL:=http://www.brain-dump.org/projects/dvtm/
  25. endef
  26. define Package/dvtm/description
  27. dvtm brings the concept of tiling window management, popularized by X11-window managers like dwm to the console. As a console window manager it tries to make it easy to work with multiple console based programs.
  28. endef
  29. define Package/dvtm/install
  30. $(INSTALL_DIR) $(1)/usr/bin
  31. $(INSTALL_BIN) $(PKG_BUILD_DIR)/dvtm $(1)/usr/bin/
  32. endef
  33. $(eval $(call BuildPackage,dvtm))