X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0b0afa4d818ec18187b09055fbb8d84a01590d6e..3b20aec50f6ec53d9e532d6718924f01305e8004:/package/nvram/Makefile diff --git a/package/nvram/Makefile b/package/nvram/Makefile index 11e89363f..87e8b0659 100644 --- a/package/nvram/Makefile +++ b/package/nvram/Makefile @@ -1,3 +1,9 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# # $Id$ include $(TOPDIR)/rules.mk @@ -10,10 +16,13 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) include $(INCLUDE_DIR)/package.mk define Package/nvram -SECTION:=base -DEPENDS:=@LINUX_2_4_BRCM -TITLE:=Broadcom config utility -DESCRIPTION:=control utility for broadcom's 'nvram' config area + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=@LINUX_2_4_BRCM + TITLE:=Broadcom config utility + DESCRIPTION:=\ + This package contains an utility to control broadcom's 'nvram' config \\\ + area. endef define Build/Prepare @@ -21,13 +30,6 @@ define Build/Prepare $(CP) ./src/* $(PKG_BUILD_DIR) endef -define Package/nvram/install - install -d -m0755 $(1)/usr/lib - $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(1)/usr/lib/ - install -d -m0755 $(1)/usr/sbin - install -m0755 $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/ -endef - define Build/InstallDev mkdir -p $(STAGING_DIR)/usr/lib $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(STAGING_DIR)/usr/lib/ @@ -37,4 +39,11 @@ define Build/UninstallDev rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so endef +define Package/nvram/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/ +endef + $(eval $(call BuildPackage,nvram))