1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-01 02:52:01 +03:00

ikog.py: using UNPACK_CMD instead of download everytime compile

This commit is contained in:
Xiangfu Liu 2011-01-06 16:49:44 +08:00
parent cd33c1caf8
commit f93258ccb6

View File

@ -3,6 +3,9 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=ikog
PKG_VERSION:=1.90
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME).py.gz
PKG_SOURCE_URL:=http://www.henspace.co.uk/ikog/app/
UNPACK_CMD=zcat $(DL_DIR)/$(PKG_SOURCE) > $(1)/ikog.py
include $(INCLUDE_DIR)/package.mk
@ -17,15 +20,6 @@ define Package/ikog/description
the simple todo list
endef
define Build/Prepare
( \
mkdir $(PKG_BUILD_DIR); \
cd $(PKG_BUILD_DIR); \
wget http://www.henspace.co.uk/ikog/app/$(PKG_NAME).py.gz; \
gzip -d $(PKG_NAME).py.gz; \
)
endef
define Build/Compile
endef