787423d3c2
This is a cryptographically signed message in MIME format. - fixes build errors (from buildbot logs): build/staging_dir/target-mips_34kc_uClibc-0.9.33.2/usr/lib/liblua.so: undefined reference to `dlsym' build/staging_dir/target-mips_34kc_uClibc-0.9.33.2/usr/lib/liblua.so: undefined reference to `dlerror' build/staging_dir/target-mips_34kc_uClibc-0.9.33.2/usr/lib/liblua.so: undefined reference to `dlopen' build/staging_dir/target-mips_34kc_uClibc-0.9.33.2/usr/lib/liblua.so: undefined reference to `dlclose' collect2: ld returned 1 exit status - depends on liblua, libuuid - use external libuuid instead of internal one - update to taskwarrior 2.3.0 Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> [update from 2.20 to 2.30 and add libreadline dependency] Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/packages@39521 3c298f89-4303-0410-b956-a3cf2f4a3e73
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=taskwarrior
|
|
PKG_VERSION:=2.3.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=task-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.taskwarrior.org/download/
|
|
PKG_MD5SUM:=2c1d2c64311855f3519ad038ebd372ac
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/task-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/taskwarrior
|
|
TITLE:=taskwarrior
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libncurses +libstdcpp +liblua +libuuid +libreadline
|
|
URL:=http://taskwarrior.org/projects/show/taskwarrior
|
|
MAINTAINER:=Xiangfu Liu <xiangfu@sharism.cc>
|
|
endef
|
|
|
|
TARGET_LDFLAGS += -ldl
|
|
|
|
define Package/taskwarrior/description
|
|
taskwarrior is a command-line todo list manager
|
|
endef
|
|
|
|
define Package/taskwarrior/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/task $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,taskwarrior))
|