standardize Makefile
SVN-Revision: 4845
This commit is contained in:
parent
8386790016
commit
df1ef8a38d
1 changed files with 33 additions and 23 deletions
|
@ -11,51 +11,58 @@ include $(TOPDIR)/rules.mk
|
||||||
PKG_NAME:=util-linux
|
PKG_NAME:=util-linux
|
||||||
PKG_VERSION:=2.12r
|
PKG_VERSION:=2.12r
|
||||||
PKG_RELEASE:=1
|
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)/ \
|
PKG_SOURCE_URL:=ftp://ftp.kernel.org/pub/linux/utils/$(PKG_NAME)/ \
|
||||||
http://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)/ \
|
ftp://ftp.de.kernel.org/pub/linux/utils/$(PKG_NAME)/ \
|
||||||
http://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_CAT:=zcat
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
||||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
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
|
define Package/fdisk
|
||||||
SECTION:=base
|
$(call Package/util-linux/Default)
|
||||||
CATEGORY:=Utilities
|
TITLE:=Partition table manipulation utility
|
||||||
TITLE:=Partition table manipulation utility
|
DESCRIPTION:=\
|
||||||
DESCRIPTION:=A partition table manipulation utility
|
This package contains an utility for managing disk partition tables.
|
||||||
URL:=http://www.kernel.org/pub/linux/utils/util-linux/
|
URL:=http://www.kernel.org/pub/linux/utils/util-linux/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/losetup
|
define Package/losetup
|
||||||
$(call Package/fdisk)
|
$(call Package/util-linux/Default)
|
||||||
TITLE:=Loopback devices setup and control utility
|
TITLE:=Loopback devices setup and control utility
|
||||||
DESCRIPTION:=A loopback devices setup and control utility
|
DESCRIPTION:=\
|
||||||
|
This package contains an utility for managing loopback devices.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/swap-utils
|
define Package/swap-utils
|
||||||
$(call Package/fdisk)
|
$(call Package/util-linux/Default)
|
||||||
TITLE:=Swap space management utilities
|
TITLE:=Swap space management utilities
|
||||||
DESCRIPTION:=A collection of tools to manage swap space \\\
|
DESCRIPTION:=\
|
||||||
* mkswap\\\
|
This package contains a collection of tools for managing swap space: \\\
|
||||||
* swapon\\\
|
- mkswap\\\
|
||||||
* swapoff
|
- swapon\\\
|
||||||
|
- swapoff
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
rm -rf $(PKG_INSTALL_DIR)
|
$(call Build/Compile/Default, \
|
||||||
mkdir -p $(PKG_INSTALL_DIR)
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
|
||||||
OPT="$(TARGET_CFLAGS)" \
|
OPT="$(TARGET_CFLAGS)" \
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
||||||
INSTALLSUID="install -m 4755" \
|
INSTALLSUID="install -m 4755" \
|
||||||
all install
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
all install \
|
||||||
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/Template
|
define Package/Template
|
||||||
|
@ -70,14 +77,17 @@ endef
|
||||||
define Package/fdisk/install
|
define Package/fdisk/install
|
||||||
$(call Package/Template,sbin/fdisk,$(1)/usr/sbin)
|
$(call Package/Template,sbin/fdisk,$(1)/usr/sbin)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/losetup/install
|
define Package/losetup/install
|
||||||
$(call Package/Template,sbin/losetup,$(1)/usr/sbin)
|
$(call Package/Template,sbin/losetup,$(1)/usr/sbin)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/swap-utils/install
|
define Package/swap-utils/install
|
||||||
$(call Package/Template,sbin/mkswap,$(1)/usr/sbin)
|
$(call Package/Template,sbin/mkswap,$(1)/usr/sbin)
|
||||||
$(call Package/Template,sbin/swapon,$(1)/usr/sbin)
|
$(call Package/Template,sbin/swapon,$(1)/usr/sbin)
|
||||||
$(call Package/Template,sbin/swapoff,$(1)/usr/sbin)
|
$(call Package/Template,sbin/swapoff,$(1)/usr/sbin)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,fdisk))
|
$(eval $(call BuildPackage,fdisk))
|
||||||
$(eval $(call BuildPackage,losetup))
|
$(eval $(call BuildPackage,losetup))
|
||||||
$(eval $(call BuildPackage,swap-utils))
|
$(eval $(call BuildPackage,swap-utils))
|
||||||
|
|
Loading…
Reference in a new issue