summaryrefslogtreecommitdiffstats
path: root/package/wget2nand/Makefile
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-11 22:15:06 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-11 22:15:06 +0000
commitb7ff990b64c2ee57be79dac95eb1bf732bec28d8 (patch)
tree17c6d4b9d3b4a4bccb263a393eb43c7da1791bb9 /package/wget2nand/Makefile
parent3786a154ba89635a2fe620d0e9547a2eedeec6a2 (diff)
Add wget2nand from David Goodenough, useful for RouterOS to OpenWrt migration
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7192 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wget2nand/Makefile')
-rw-r--r--package/wget2nand/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/package/wget2nand/Makefile b/package/wget2nand/Makefile
new file mode 100644
index 000000000..e029a502e
--- /dev/null
+++ b/package/wget2nand/Makefile
@@ -0,0 +1,37 @@
+#
+# Copyright (C) 2007 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+# $Id: $
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=wget2nand
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/wget2nand
+ SECTION:=utils
+ CATEGORY:=Utilities
+ TITLE:=RouterOS to OpenWrt install script
+ DEPENDS:=@LINUX_2_6_ADM5120
+ DESCRIPTION:=\
+ A tool to switch from RouterBoard RouterOS to OpenWrt
+ URL:=https://dev.openwrt.org/browser/trunk/package/wget2nand/src/wget2nand
+ VERSION:=1
+endef
+
+define Build/Configure
+endef
+
+define Build/Compile
+endef
+
+define Package/wget2nand/install
+ $(INSTALL_DIR) $(1)/sbin
+ $(INSTALL_BIN) ./src/$(PKG_NAME) $(1)/sbin/
+endef
+
+$(eval $(call BuildPackage,wget2nand))