Makefile (1107B)
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 8 include $(TOPDIR)/rules.mk 9 10 PKG_NAME:=dvtm 11 PKG_VERSION:=0.15 12 PKG_RELEASE:=1 13 14 PKG_SOURCE:=dvtm-$(PKG_VERSION).tar.gz 15 PKG_SOURCE_URL:=http://www.brain-dump.org/projects/dvtm/ 16 PKG_MD5SUM:=887e162a3abe2ad8e86caefab20cdd63 17 PKG_MAINTAINER:=Yunfan Jiang <jyf1987@gmail.com> 18 19 PKG_LICENSE:=MIT/X 20 PKG_LICENSE_FILES:=LICENSE 21 22 include $(INCLUDE_DIR)/package.mk 23 24 define Package/dvtm 25 SECTION:=utils 26 CATEGORY:=Utilities 27 SUBMENU:=Terminal 28 DEPENDS:=+libncursesw 29 TITLE:=dynamic virtual terminal manager 30 URL:=http://www.brain-dump.org/projects/dvtm/ 31 endef 32 33 define Package/dvtm/description 34 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. 35 endef 36 37 define Package/dvtm/install 38 $(INSTALL_DIR) $(1)/usr/bin 39 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dvtm $(1)/usr/bin/ 40 endef 41 42 $(eval $(call BuildPackage,dvtm))