strip the kernel version suffix from target directories, except for brcm-2.4 (the...
[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   DESCRIPTION:=\
22         This package contains an utility to control broadcom's 'nvram' config \\\
23         area.
24 endef
25
26 define Build/Prepare
27         mkdir -p $(PKG_BUILD_DIR)
28         $(CP) ./src/* $(PKG_BUILD_DIR)
29 endef
30
31 define Build/InstallDev
32         mkdir -p $(STAGING_DIR)/usr/lib
33         $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(STAGING_DIR)/usr/lib/
34 endef
35
36 define Build/UninstallDev
37         rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so
38 endef
39
40 define Package/nvram/install
41         $(INSTALL_DIR) $(1)/etc/init.d
42         $(INSTALL_BIN) ./files/nvram.init $(1)/etc/init.d/nvram
43         $(INSTALL_DIR) $(1)/usr/lib
44         $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(1)/usr/lib/
45         $(INSTALL_DIR) $(1)/usr/sbin
46         $(INSTALL_BIN) $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
47 endef
48
49 $(eval $(call BuildPackage,nvram))