[8.09] [package] openssl: revert update to 0.9.8k in r15745
[openwrt/svn-archive/archive.git] / package / nvram-brcm47xx / Makefile
1 #
2 # Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.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:=nvram-brcm47xx
11 PKG_RELEASE:=4
12
13 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/nvram-brcm47xx
18 SECTION:=utils
19 CATEGORY:=Base system
20 TITLE:=Userspace port of the Broadcom NVRAM manipulation tool
21 DEPENDS:=@TARGET_brcm47xx
22 endef
23
24 define Package/nvram-brcm47xx/description
25 This package contains an utility to manipulate NVRAM on Broadcom based devices.
26 endef
27
28 define Build/Prepare
29 mkdir -p $(PKG_BUILD_DIR)
30 $(CP) ./src/* $(PKG_BUILD_DIR)/
31 endef
32
33 define Build/Configure
34 endef
35
36 define Build/Compile
37 $(MAKE) -C $(PKG_BUILD_DIR) \
38 CC="$(TARGET_CC)" \
39 CFLAGS="$(TARGET_CFLAGS) -Wall" \
40 LDFLAGS="$(TARGET_LDFLAGS)"
41 endef
42
43 define Package/nvram-brcm47xx/install
44 $(INSTALL_DIR) $(1)/etc/init.d
45 $(INSTALL_BIN) ./files/nvram.init $(1)/etc/init.d/nvram
46 $(INSTALL_DIR) $(1)/usr/sbin
47 $(INSTALL_BIN) $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
48 $(INSTALL_DIR) $(1)/usr/lib
49 $(INSTALL_BIN) $(PKG_BUILD_DIR)/libnvram.so.0.1 $(1)/usr/lib/
50 endef
51
52 $(eval $(call BuildPackage,nvram-brcm47xx))