Root/taskwarrior/Makefile

1#
2# This is free software, licensed under the GNU General Public License v2.
3#
4
5include $(TOPDIR)/rules.mk
6PKG_NAME:=taskwarrior
7PKG_VERSION:=1.9.4
8PKG_SOURCE:=task-$(PKG_VERSION).tar.gz
9PKG_SOURCE_URL:=http://www.taskwarrior.org/download/
10PKG_BUILD_DIR:=$(BUILD_DIR)/task-$(PKG_VERSION)
11
12PKG_RELEASE:=1
13PKG_INSTALL:=1
14
15include $(INCLUDE_DIR)/package.mk
16
17define Package/taskwarrior
18    MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc>
19    TITLE:=Taskwarrior - command line task manager
20    SECTION:=utils
21    CATEGORY:=Utilities
22    DEPENDS:=+libncurses
23    URL:=http://taskwarrior.org/projects/show/taskwarrior
24endef
25
26define Package/taskwarrior/description
27    Taskwarrior is an ambitious project to supercharge task with an interactive interface, GTD features, color themes, data synch, dependencies,
28    custom reports, charts, and Lua plugins, all while our international team provides excellent support!
29endef
30
31define Package/taskwarrior/install
32    $(INSTALL_DIR) $(1)/usr/bin
33    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/task $(1)/usr/bin/
34endef
35
36$(eval $(call BuildPackage,taskwarrior))
37

Archive Download this file



interactive