summaryrefslogtreecommitdiffstats
path: root/package/util-linux
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-09-23 19:32:32 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-09-23 19:32:32 +0000
commit6e891afbdd5e312380a2161dfa0aae0b39fd770b (patch)
treebe105eaef5dc3262065ffdb3bd2bec65dea4656c /package/util-linux
parent5c781c3a337fb026474bc7d27a4a95a079666ec1 (diff)
standardize Makefile
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4845 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/util-linux')
-rw-r--r--package/util-linux/Makefile56
1 files changed, 33 insertions, 23 deletions
diff --git a/package/util-linux/Makefile b/package/util-linux/Makefile
index 79517f9df..18fb25146 100644
--- a/package/util-linux/Makefile
+++ b/package/util-linux/Makefile
@@ -11,51 +11,58 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=util-linux
PKG_VERSION:=2.12r
PKG_RELEASE:=1
-PKG_MD5SUM:=c261230b27fc0fbcc287c76884caf2d3
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=ftp://ftp.kernel.org/pub/linux/utils/$(PKG_NAME)/ \
http://ftp.kernel.org/pub/linux/utils/$(PKG_NAME)/ \
ftp://ftp.de.kernel.org/pub/linux/utils/$(PKG_NAME)/ \
http://ftp.de.kernel.org/pub/linux/utils/$(PKG_NAME)/
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_MD5SUM:=c261230b27fc0fbcc287c76884caf2d3
PKG_CAT:=zcat
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk
+define Package/util-linux/Default
+ SECTION:=utils
+ CATEGORY:=Utilities
+ URL:=http://www.kernel.org/pub/linux/utils/util-linux/
+endef
+
define Package/fdisk
-SECTION:=base
-CATEGORY:=Utilities
-TITLE:=Partition table manipulation utility
-DESCRIPTION:=A partition table manipulation utility
-URL:=http://www.kernel.org/pub/linux/utils/util-linux/
+ $(call Package/util-linux/Default)
+ TITLE:=Partition table manipulation utility
+ DESCRIPTION:=\
+ This package contains an utility for managing disk partition tables.
+ URL:=http://www.kernel.org/pub/linux/utils/util-linux/
endef
define Package/losetup
-$(call Package/fdisk)
-TITLE:=Loopback devices setup and control utility
-DESCRIPTION:=A loopback devices setup and control utility
+ $(call Package/util-linux/Default)
+ TITLE:=Loopback devices setup and control utility
+ DESCRIPTION:=\
+ This package contains an utility for managing loopback devices.
endef
define Package/swap-utils
-$(call Package/fdisk)
-TITLE:=Swap space management utilities
-DESCRIPTION:=A collection of tools to manage swap space \\\
- * mkswap\\\
- * swapon\\\
- * swapoff
+ $(call Package/util-linux/Default)
+ TITLE:=Swap space management utilities
+ DESCRIPTION:=\
+ This package contains a collection of tools for managing swap space: \\\
+ - mkswap\\\
+ - swapon\\\
+ - swapoff
endef
define Build/Compile
- rm -rf $(PKG_INSTALL_DIR)
- mkdir -p $(PKG_INSTALL_DIR)
- $(MAKE) -C $(PKG_BUILD_DIR) \
- $(TARGET_CONFIGURE_OPTS) \
+ $(call Build/Compile/Default, \
OPT="$(TARGET_CFLAGS)" \
- DESTDIR="$(PKG_INSTALL_DIR)" \
INSTALLSUID="install -m 4755" \
- all install
+ DESTDIR="$(PKG_INSTALL_DIR)" \
+ all install \
+ )
endef
define Package/Template
@@ -70,14 +77,17 @@ endef
define Package/fdisk/install
$(call Package/Template,sbin/fdisk,$(1)/usr/sbin)
endef
+
define Package/losetup/install
$(call Package/Template,sbin/losetup,$(1)/usr/sbin)
endef
+
define Package/swap-utils/install
$(call Package/Template,sbin/mkswap,$(1)/usr/sbin)
$(call Package/Template,sbin/swapon,$(1)/usr/sbin)
$(call Package/Template,sbin/swapoff,$(1)/usr/sbin)
endef
+
$(eval $(call BuildPackage,fdisk))
$(eval $(call BuildPackage,losetup))
$(eval $(call BuildPackage,swap-utils))