Include yamonenv by default in au1000 images
[openwrt/svn-archive/archive.git] / package / yamonenv / Makefile
1 #
2 # Copyright (C) 2006 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: Makefile 4091 2006-06-27 00:35:46Z mbm $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=yamonenv
12 PKG_VERSION:=20051022
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)_gruen.4g__$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://meshcube.org/nylon/stable/sources/
17 PKG_MD5SUM:=a3e4f24155aa3ba5aa502bc63fdaa6ad
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/yamonenv
25 SECTION:=utils
26 CATEGORY:=Utilities
27 DEFAULT:=y
28 DEPENDS:=@LINUX_2_6_AU1000@
29 TITLE:=YAMON configuration utility
30 URL:=http://meshcube.org/nylon/stable/sources/
31 endef
32
33 define Build/Configure
34 endef
35
36 define Package/yamonenv/install
37 $(INSTALL_DIR) $(1)/usr/sbin
38 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
39 endef
40
41 $(eval $(call BuildPackage,yamonenv))