summaryrefslogtreecommitdiff
path: root/ikog/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ikog/Makefile')
-rw-r--r--ikog/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/ikog/Makefile b/ikog/Makefile
new file mode 100644
index 0000000..41760e3
--- /dev/null
+++ b/ikog/Makefile
@@ -0,0 +1,37 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=ikog
+PKG_VERSION:=1.90
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/ikog
+ TITLE:=ikog
+ SECTION:=utils
+ CATEGORY:=Utilities
+ DEPNEDS:=python
+endef
+
+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
+
+define Package/ikog/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/ikog.py $(1)/usr/bin
+endef
+
+$(eval $(call BuildPackage,ikog)) \ No newline at end of file