summaryrefslogtreecommitdiff
path: root/openwrt
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2006-09-23 19:28:18 +0000
committerNicolas Thill <nico@openwrt.org>2006-09-23 19:28:18 +0000
commited9724afff4797ef215636599b4a7ff2a2a87e72 (patch)
tree27587429d8fe71a2b20362c66015af20c8d67e1b /openwrt
parent209e584c4160d4bab86266d5819f29f272ed012a (diff)
downloadmtk-20170518-ed9724afff4797ef215636599b4a7ff2a2a87e72.zip
mtk-20170518-ed9724afff4797ef215636599b4a7ff2a2a87e72.tar.gz
mtk-20170518-ed9724afff4797ef215636599b4a7ff2a2a87e72.tar.bz2
standardize Makefile, change section from base to utils
SVN-Revision: 4841
Diffstat (limited to 'openwrt')
-rw-r--r--openwrt/package/nvram/Makefile25
1 files changed, 14 insertions, 11 deletions
diff --git a/openwrt/package/nvram/Makefile b/openwrt/package/nvram/Makefile
index b7040de..ab33c11 100644
--- a/openwrt/package/nvram/Makefile
+++ b/openwrt/package/nvram/Makefile
@@ -16,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
@@ -27,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/
@@ -43,4 +39,11 @@ define Build/UninstallDev
rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so
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
+
$(eval $(call BuildPackage,nvram))