e029a502e90a9d1d4c97821536b98fd9754ef67c
[openwrt/svn-archive/archive.git] / package / wget2nand / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=wget2nand
12
13 include $(INCLUDE_DIR)/package.mk
14
15 define Package/wget2nand
16 SECTION:=utils
17 CATEGORY:=Utilities
18 TITLE:=RouterOS to OpenWrt install script
19 DEPENDS:=@LINUX_2_6_ADM5120
20 DESCRIPTION:=\
21 A tool to switch from RouterBoard RouterOS to OpenWrt
22 URL:=https://dev.openwrt.org/browser/trunk/package/wget2nand/src/wget2nand
23 VERSION:=1
24 endef
25
26 define Build/Configure
27 endef
28
29 define Build/Compile
30 endef
31
32 define Package/wget2nand/install
33 $(INSTALL_DIR) $(1)/sbin
34 $(INSTALL_BIN) ./src/$(PKG_NAME) $(1)/sbin/
35 endef
36
37 $(eval $(call BuildPackage,wget2nand))