diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-01-02 23:27:23 +0100 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-01-02 23:27:23 +0100 |
| commit | 9352995934adec8059077af241c35ccd1573bd80 (patch) | |
| tree | 60286e266b3b31b90b952ac37e12a1ebbcdd2eb6 /ikog/Makefile | |
| parent | ef3b84d78197acbd45d73a9b1ae44b47b5904290 (diff) | |
| parent | 880bca260c4ce91554a49b2475232cf5c0ffd447 (diff) | |
| download | qipackages-fork-9352995934adec8059077af241c35ccd1573bd80.tar.gz | |
Conflicts:
links/Makefile
Diffstat (limited to 'ikog/Makefile')
| -rw-r--r-- | ikog/Makefile | 37 |
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 |
