diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-23 19:28:18 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-09-23 19:28:18 +0000 |
commit | b1722f512f7c4ecb8ec0602ee8afbf8961be8fef (patch) | |
tree | 7b2140ed4339648865a755bd0199b3ff4e41462e /package/nvram/Makefile | |
parent | dfa181d685ee0413f2b073a510aac21cbe3e9949 (diff) |
standardize Makefile, change section from base to utils
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4841 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/nvram/Makefile')
-rw-r--r-- | package/nvram/Makefile | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/package/nvram/Makefile b/package/nvram/Makefile index b7040deec..ab33c1151 100644 --- a/package/nvram/Makefile +++ b/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)) |