summaryrefslogtreecommitdiffstats
path: root/package/util-linux/Makefile
blob: 43d7f7fb92a30875fcb4018801f62bd955532245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# 
# 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

PKG_NAME:=util-linux
PKG_VERSION:=2.12r
PKG_RELEASE:=2

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_MD5SUM:=c261230b27fc0fbcc287c76884caf2d3

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
  $(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/cfdisk
  $(call Package/util-linux/Default)
  TITLE:=Partition table manipulation utility
  DEPENDS:=+libncurses
  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/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/util-linux/Default)
  TITLE:=Swap space management utilities
  DESCRIPTION:=\
	This package contains a collection of tools for managing swap space: \\\
	- mkswap\\\
	- swapon\\\
	- swapoff
endef

TARGET_CFLAGS += -I$(PKG_BUILD_DIR)/lib
define Build/Compile
	$(call Build/Compile/Default, \
		OPT="$(TARGET_CFLAGS)" \
		INSTALLSUID="install -m 4755" \
		DESTDIR="$(PKG_INSTALL_DIR)" \
		all install \
	)
endef

define Package/Template
	@if [ \! -f "$(PKG_INSTALL_DIR)/$(1)" ]; then \
		rm -f $(PKG_BUILD_DIR)/.built; \
		$(MAKE) $(PKG_BUILD_DIR)/.built; \
	fi
	$(INSTALL_DIR) $(2)
	$(CP) $(PKG_INSTALL_DIR)/$(1) $(2)/
endef

define Package/fdisk/install
	$(call Package/Template,sbin/fdisk,$(1)/usr/sbin)
endef

define Package/cfdisk/install
	$(call Package/Template,sbin/cfdisk,$(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,cfdisk))
$(eval $(call BuildPackage,losetup))
$(eval $(call BuildPackage,swap-utils))