parted: add new package
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit 5ad56ca340
)
Signed-off-by: Ren Zongjia <acooler15@foxmail.com>
This commit is contained in:
parent
929b57d853
commit
8638a565cd
3 changed files with 77 additions and 0 deletions
14
utils/parted/Config.in
Normal file
14
utils/parted/Config.in
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
menu "Configuration"
|
||||||
|
depends on PACKAGE_parted
|
||||||
|
|
||||||
|
config PARTED_READLINE
|
||||||
|
bool "Use readline library"
|
||||||
|
depends on PACKAGE_parted
|
||||||
|
default y
|
||||||
|
|
||||||
|
config PARTED_LVM2
|
||||||
|
bool "Support LVM"
|
||||||
|
depends on PACKAGE_parted
|
||||||
|
default n
|
||||||
|
|
||||||
|
endmenu
|
53
utils/parted/Makefile
Normal file
53
utils/parted/Makefile
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=parted
|
||||||
|
PKG_VERSION:=3.4
|
||||||
|
PKG_RELEASE:=$(AUTORELEASE)
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||||
|
PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/parted/
|
||||||
|
PKG_HASH:=e1298022472da5589b7f2be1d5ee3c1b66ec3d96dfbad03dc642afd009da5342
|
||||||
|
|
||||||
|
PKG_BUILD_PARALLEL:=1
|
||||||
|
PKG_INSTALL:=1
|
||||||
|
|
||||||
|
PKG_MAINTAINER:=Oskari Rauta <oskari.rauta@gmail.com>
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/parted
|
||||||
|
SECTION:=utils
|
||||||
|
CATEGORY:=Utilities
|
||||||
|
TITLE:=GNU Parted
|
||||||
|
SUBMENU:=Disc
|
||||||
|
DEPENDS:=+libblkid +libuuid +PARTED_READLINE:libreadline +CONFIG_PARTED_READLINE:libncurses +PARTED_LVM2:libdevmapper
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/parted/description
|
||||||
|
GNU Parted manipulates partition tables. This is useful for
|
||||||
|
creating space for new operating systems, reorganizing
|
||||||
|
disk usage, copying data on hard disks and disk imaging.
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/parted/config
|
||||||
|
source "$(SOURCE)/Config.in"
|
||||||
|
endef
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_PARTED_READLINE),y)
|
||||||
|
CONFIGURE_ARGS += --without-readline
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_PARTED_LVM2),y)
|
||||||
|
CONFIGURE_ARGS += --disable-device-mapper
|
||||||
|
endif
|
||||||
|
|
||||||
|
define Package/parted/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib $(1)/sbin
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so** $(1)/usr/lib/
|
||||||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/parted $(1)/sbin/
|
||||||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/partprobe $(1)/sbin/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,parted))
|
10
utils/parted/test.sh
Normal file
10
utils/parted/test.sh
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
"partprobe")
|
||||||
|
test $(/sbin/partprobe --version | grep '^Copyright' | wc -l) -gt 0
|
||||||
|
;;
|
||||||
|
"parted")
|
||||||
|
test $(/sbin/parted --version | grep '^Copyright' | wc -l) -gt 0
|
||||||
|
;;
|
||||||
|
esac
|
Loading…
Reference in a new issue