Merge pull request #2653 from dibdot/adblock
[feed/packages.git] / utils / dvtm / Makefile
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 DEPENDS:=+libncursesw
28 TITLE:=dynamic virtual terminal manager
29 URL:=http://www.brain-dump.org/projects/dvtm/
30 endef
31
32 define Package/dvtm/description
33 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.
34 endef
35
36 define Package/dvtm/install
37 $(INSTALL_DIR) $(1)/usr/bin
38 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dvtm $(1)/usr/bin/
39 endef
40
41 $(eval $(call BuildPackage,dvtm))