packages: mark packages depending on a target as nonshared
[openwrt/staging/wigyori.git] / package / boot / 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_HASH:=466eca9cdad2c15e957fb9ce7d0b6927ecd17d85c4cc2dff37e97a3e6b209c67
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
19
20 PKG_FLAGS:=nonshared
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/yamonenv
25 SECTION:=utils
26 CATEGORY:=Utilities
27 SUBMENU:=Boot Loaders
28 DEPENDS:=@TARGET_au1000
29 TITLE:=YAMON configuration utility
30 URL:=http://meshcube.org/nylon/stable/sources/
31 MAINTAINER:=Florian Fainelli <florian@openwrt.org>
32 endef
33
34 define Build/Configure
35 endef
36
37 define Package/yamonenv/install
38 $(INSTALL_DIR) $(1)/usr/sbin
39 $(CP) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
40 endef
41
42 $(eval $(call BuildPackage,yamonenv))