get rid of $Id$ - it has never helped us and it has broken too many patches ;)
[openwrt-10.03/.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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=yamonenv
11 PKG_VERSION:=20051022
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)_gruen.4g__$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
16 PKG_MD5SUM:=a3e4f24155aa3ba5aa502bc63fdaa6ad
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/yamonenv
23   SECTION:=utils
24   CATEGORY:=Utilities
25   DEPENDS:=@TARGET_au1000
26   TITLE:=YAMON configuration utility
27   URL:=http://meshcube.org/nylon/stable/sources/
28 endef
29
30 define Build/Configure
31 endef
32
33 define Package/yamonenv/install
34         $(INSTALL_DIR) $(1)/usr/sbin
35         $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
36 endef
37
38 $(eval $(call BuildPackage,yamonenv))