2015-10-16 06:12:13 +08:00
|
|
|
#
|
2006-07-03 21:25:25 +08:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=yamonenv
|
|
|
|
PKG_VERSION:=20051022
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_gruen.4g__$(PKG_VERSION).tar.gz
|
2008-11-15 22:55:55 +08:00
|
|
|
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
|
2016-12-17 00:32:10 +08:00
|
|
|
PKG_HASH:=466eca9cdad2c15e957fb9ce7d0b6927ecd17d85c4cc2dff37e97a3e6b209c67
|
2006-07-03 21:25:25 +08:00
|
|
|
|
2006-09-25 04:49:31 +08:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
2006-07-03 21:25:25 +08:00
|
|
|
|
2017-01-19 16:18:57 +08:00
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
|
2006-07-03 21:25:25 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/yamonenv
|
2006-09-25 04:49:31 +08:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2016-11-03 18:41:32 +08:00
|
|
|
SUBMENU:=Boot Loaders
|
2007-09-09 03:55:42 +08:00
|
|
|
DEPENDS:=@TARGET_au1000
|
2006-09-25 04:49:31 +08:00
|
|
|
TITLE:=YAMON configuration utility
|
|
|
|
URL:=http://meshcube.org/nylon/stable/sources/
|
2012-10-10 21:21:54 +08:00
|
|
|
MAINTAINER:=Florian Fainelli <florian@openwrt.org>
|
2006-07-03 21:25:25 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/yamonenv/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2006-07-03 21:25:25 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,yamonenv))
|