ec20de2cb42ffc7d06e0f976b5eb73296d896c40
[openwrt-10.03/.git] / package / nvram / 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$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=nvram
12 PKG_RELEASE:=1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/nvram
17   SECTION:=utils
18   CATEGORY:=Utilities
19   DEPENDS:=@TARGET_brcm_2_4
20   TITLE:=Broadcom config utility
21 endef
22
23 define Package/nvram/description
24  This package contains an utility to control broadcom's 'nvram' config area.
25 endef
26
27 define Build/Prepare
28         mkdir -p $(PKG_BUILD_DIR)
29         $(CP) ./src/* $(PKG_BUILD_DIR)
30 endef
31
32 TARGET_CFLAGS += $(FPIC)
33
34 define Build/InstallDev
35         mkdir -p $(1)/usr/lib
36         $(CP) $(PKG_BUILD_DIR)/libnvram*.so $(1)/usr/lib/
37 endef
38
39 define Package/nvram/install
40         $(INSTALL_DIR) $(1)/etc/init.d
41         $(INSTALL_BIN) ./files/nvram.init $(1)/etc/init.d/nvram
42         $(INSTALL_DIR) $(1)/usr/lib
43         $(CP) $(PKG_BUILD_DIR)/libnvram*.so $(1)/usr/lib/
44         $(INSTALL_DIR) $(1)/usr/sbin
45         $(INSTALL_BIN) $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
46 endef
47
48 $(eval $(call BuildPackage,nvram))